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