2022-11-03 10:30:36 +00:00
|
|
|
name: Tests
|
2021-04-30 00:59:17 +00:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2023-01-30 10:53:45 +00:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-04-30 00:59:17 +00:00
|
|
|
jobs:
|
2021-06-13 11:12:48 +00:00
|
|
|
test:
|
2021-04-30 00:59:17 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-11-04 09:40:39 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-01-30 09:54:26 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-04-30 00:59:17 +00:00
|
|
|
|
2022-01-30 09:43:48 +00:00
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
2022-11-04 09:40:39 +00:00
|
|
|
uses: tj-actions/changed-files@v34
|
2022-01-30 09:43:48 +00:00
|
|
|
with:
|
|
|
|
files: |
|
2022-03-17 18:10:50 +00:00
|
|
|
*.nix
|
2022-01-30 09:43:48 +00:00
|
|
|
go.*
|
|
|
|
**/*.go
|
|
|
|
integration_test/
|
|
|
|
config-example.yaml
|
|
|
|
|
2023-06-28 10:56:35 +00:00
|
|
|
- uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2022-01-30 09:43:48 +00:00
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2021-04-30 00:59:17 +00:00
|
|
|
|
2021-08-21 14:40:27 +00:00
|
|
|
- name: Run tests
|
2022-01-30 09:43:48 +00:00
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2022-03-17 18:10:50 +00:00
|
|
|
run: nix develop --check
|