We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa00ec8 commit c5e2e5eCopy full SHA for c5e2e5e
.github/workflows/e2e.yaml
@@ -79,3 +79,24 @@ jobs:
79
run: |
80
kind delete cluster --name ${{ steps.prep.outputs.CLUSTER }}
81
rm /tmp/${{ steps.prep.outputs.CLUSTER }}
82
+
83
+ # Runs 'make test' on macos-10.15 to assure development environment for
84
+ # contributors using MacOS.
85
+ darwin-amd64:
86
+ runs-on: macos-10.15
87
+ steps:
88
+ - name: Checkout
89
+ uses: actions/checkout@v2
90
+ - name: Setup Go
91
+ uses: actions/setup-go@v2
92
+ with:
93
+ go-version: 1.17.x
94
+ - name: Restore Go cache
95
+ uses: actions/cache@v1
96
97
+ path: /home/runner/work/_temp/_github_home/go/pkg/mod
98
+ key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
99
+ restore-keys: |
100
+ ${{ runner.os }}-go-
101
+ - name: Run tests
102
+ run: make test
0 commit comments