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 caf24ce commit 48c57a2Copy full SHA for 48c57a2
.github/workflows/test.yml
@@ -0,0 +1,30 @@
1
+name: test
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ run-tests:
13
+ runs-on: ubuntu-latest
14
+ container:
15
+ image: archlinux
16
+ steps:
17
+ - name: Update the system and install dependencies
18
+ run: pacman -Syu --noconfirm --noprogressbar --needed python-pip ninja gcc git
19
20
+ - name: Install nox
21
+ run: pip install nox
22
23
+ - name: Checkout
24
+ uses: actions/checkout@v2
25
26
+ - name: Run tests
27
+ run: nox
28
29
+ - uses: codecov/codecov-action@v1
30
+ if: ${{ always() }}
0 commit comments