add Github Action to run the tests

CircleCI doesn't seem to be running on the repository. This also makes
it easy for people who fork the repo to run the CI since it is enabled
by default on all the repositories.
This commit is contained in:
zimbatm 2020-04-28 12:52:23 +02:00
parent e2cc0101af
commit 06f91bf67e
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7
2 changed files with 13 additions and 18 deletions

View File

@ -1,18 +0,0 @@
version: 2
jobs:
nix:
docker:
- image: nixos/nix:latest
working_directory: ~/NixGL
steps:
- checkout
- run:
name: Build all wrapper (with default version for nvidia)
command: nix-build ./all.nix
workflows:
version: 2
nix_stack:
jobs:
- nix

13
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,13 @@
name: 'Test'
on: [ push, pull_request ]
jobs:
test:
name: 'Test'
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: cachix/install-nix-action@v8
- run: nix-build all.nix