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 13c726e commit 4ccb035Copy full SHA for 4ccb035
.github/workflows/check-for-linter.yml
@@ -0,0 +1,26 @@
1
+name: check-for-linter
2
+on:
3
+ push:
4
+ branches: main
5
+ pull_request:
6
7
+
8
+jobs:
9
+ build:
10
+ runs-on: ${{matrix.os}}
11
12
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-latest, macos-latest]
15
16
+ -name: Checkout code
17
+ uses: actions/checkout@v4
18
19
+ -name: Install project
20
+ run: make install
21
22
+ -name: Validate files for linter
23
+ run: make lint
24
25
+ -name: Run unit tests
26
+ run: make test
0 commit comments