2023-10-18 23:53:26 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- 'releases/*'
|
|
|
|
jobs:
|
|
|
|
test:
|
2023-10-20 00:18:11 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
runs-on:
|
|
|
|
- ubuntu-22.04
|
|
|
|
- macos-13
|
|
|
|
runs-on: ${{ matrix.runs-on }}
|
2023-10-18 23:53:26 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-01-15 15:24:09 +00:00
|
|
|
- uses: cachix/install-nix-action@v25
|
2023-10-18 23:53:26 +00:00
|
|
|
- uses: ./
|
|
|
|
- run: actionlint
|
|
|
|
- run: shellcheck nix-develop-gha.sh
|
2023-10-20 00:18:11 +00:00
|
|
|
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
|