chore: Test on MacOS and with Determinate installer
This commit is contained in:
parent
9342b170fb
commit
e8d0a33c87
1 changed files with 19 additions and 1 deletions
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
|
@ -6,10 +6,28 @@ on:
|
||||||
- 'releases/*'
|
- 'releases/*'
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
strategy:
|
||||||
|
matrix:
|
||||||
|
runs-on:
|
||||||
|
- ubuntu-22.04
|
||||||
|
- macos-13
|
||||||
|
runs-on: ${{ matrix.runs-on }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: cachix/install-nix-action@v22
|
- uses: cachix/install-nix-action@v22
|
||||||
- uses: ./
|
- uses: ./
|
||||||
- run: actionlint
|
- run: actionlint
|
||||||
- run: shellcheck nix-develop-gha.sh
|
- run: shellcheck nix-develop-gha.sh
|
||||||
|
test-determinate:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
runs-on:
|
||||||
|
- ubuntu-22.04
|
||||||
|
- macos-13
|
||||||
|
runs-on: ${{ matrix.runs-on }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: DeterminateSystems/nix-installer-action@main
|
||||||
|
- uses: ./
|
||||||
|
- run: actionlint
|
||||||
|
- run: shellcheck nix-develop-gha.sh
|
||||||
|
|
Loading…
Add table
Reference in a new issue