headscale/.github/workflows/test-integration.yml

33 lines
703 B
YAML
Raw Normal View History

2021-08-14 00:12:01 +09:00
name: CI
on: [pull_request]
jobs:
integration-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2022-01-30 18:54:26 +09:00
with:
fetch-depth: 2
2021-08-14 00:12:01 +09:00
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v14.1
with:
files: |
go.*
**/*.go
integration_test/
config-example.yaml
2021-08-14 00:12:01 +09:00
- name: Setup Go
if: steps.changed-files.outputs.any_changed == 'true'
2021-08-14 00:12:01 +09:00
uses: actions/setup-go@v2
with:
2022-03-18 02:43:11 +09:00
go-version: "1.18.0"
2021-08-14 00:12:01 +09:00
- name: Run Integration tests
if: steps.changed-files.outputs.any_changed == 'true'
2022-02-24 20:29:53 +09:00
run: make test_integration