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