Merge pull request #58 from nix-community/disable-classic-checks

Disable nix-shell based checks
This commit is contained in:
adisbladis 2022-04-22 14:34:04 +07:00 committed by GitHub
commit 192fa87968
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 22 deletions

View file

@ -1,21 +0,0 @@
name: "Development workflow - nix-shell"
on:
pull_request:
push:
branches:
- main
jobs:
tests:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v17
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Build
run: nix-shell --run 'meson build && cd build && ninja'
- name: Run tests
run: nix-shell --run 'pytest ./tests'

View file

@ -1,4 +1,4 @@
name: "Development workflow - flakes"
name: "Development workflow"
on:
pull_request:
push: