2022-11-03 18:30:36 +08:00
|
|
|
name: Tests
|
2021-04-30 08:59:17 +08:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2021-06-13 19:12:48 +08:00
|
|
|
test:
|
2021-04-30 08:59:17 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2021-08-21 22:40:27 +08:00
|
|
|
- uses: actions/checkout@v2
|
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
|
|
|
|
uses: tj-actions/changed-files@v14.1
|
|
|
|
with:
|
|
|
|
files: |
|
2022-03-18 02:10:50 +08:00
|
|
|
*.nix
|
2022-01-30 17:43:48 +08:00
|
|
|
go.*
|
|
|
|
**/*.go
|
|
|
|
integration_test/
|
|
|
|
config-example.yaml
|
|
|
|
|
2022-03-18 02:10:50 +08:00
|
|
|
- uses: cachix/install-nix-action@v16
|
2022-01-30 17:43:48 +08:00
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2021-04-30 08:59:17 +08:00
|
|
|
|
2021-08-21 22:40:27 +08:00
|
|
|
- name: Run tests
|
2022-01-30 17:43:48 +08:00
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2022-03-18 02:10:50 +08:00
|
|
|
run: nix develop --check
|