headscale/.github/workflows/test.yml

31 lines
643 B
YAML
Raw Normal View History

2021-04-30 08:59:17 +08:00
name: CI
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:
- uses: actions/checkout@v2
2022-01-30 17:54:26 +08:00
with:
fetch-depth: 2
2021-04-30 08:59:17 +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
go.*
**/*.go
integration_test/
config-example.yaml
2022-03-18 02:10:50 +08:00
- uses: cachix/install-nix-action@v16
if: steps.changed-files.outputs.any_changed == 'true'
2021-04-30 08:59:17 +08:00
- name: Run tests
if: steps.changed-files.outputs.any_changed == 'true'
2022-03-18 02:10:50 +08:00
run: nix develop --check