2023-01-02 10:31:28 +00:00
|
|
|
name: "Tests"
|
2021-03-15 05:19:54 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-01-02 10:42:56 +00:00
|
|
|
- staging
|
2022-10-31 06:14:24 +00:00
|
|
|
- release-*
|
2021-03-15 05:19:54 +00:00
|
|
|
jobs:
|
|
|
|
tests:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ ubuntu-latest, macos-latest ]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2022-03-07 23:12:51 +00:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-15 05:19:54 +00:00
|
|
|
with:
|
|
|
|
# Nix Flakes doesn't work on shallow clones
|
|
|
|
fetch-depth: 0
|
2023-05-29 23:57:07 +00:00
|
|
|
- uses: cachix/install-nix-action@v21
|
2023-01-02 10:31:28 +00:00
|
|
|
with:
|
|
|
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
extra_nix_config: |
|
|
|
|
accept-flake-config = true
|
2021-03-15 05:19:54 +00:00
|
|
|
- name: Build
|
2022-01-08 08:22:01 +00:00
|
|
|
run: nix develop -c bash -c 'meson build && cd build && ninja'
|
2021-03-21 18:18:03 +00:00
|
|
|
- name: Run tests
|
2022-01-08 08:22:01 +00:00
|
|
|
run: nix develop -c pytest ./tests
|