2022-11-03 18:30:36 +08:00
|
|
|
name: Integration Test CLI
|
2021-08-13 23:12:01 +08:00
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-10-18 18:05:17 +08:00
|
|
|
integration-test-cli:
|
2021-08-13 23:12:01 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-11-04 17:40:39 +08:00
|
|
|
- uses: actions/checkout@v3
|
2022-01-30 17:54:26 +08:00
|
|
|
with:
|
|
|
|
fetch-depth: 2
|
2021-08-13 23:12:01 +08:00
|
|
|
|
2022-08-09 05:20:29 +08:00
|
|
|
- name: Set Swap Space
|
|
|
|
uses: pierotofy/set-swap-space@master
|
|
|
|
with:
|
|
|
|
swap-size-gb: 10
|
|
|
|
|
2022-01-30 17:43:48 +08:00
|
|
|
- name: Get changed files
|
|
|
|
id: changed-files
|
2022-11-04 17:40:39 +08:00
|
|
|
uses: tj-actions/changed-files@v34
|
2022-01-30 17:43:48 +08:00
|
|
|
with:
|
|
|
|
files: |
|
2022-03-18 02:08:49 +08:00
|
|
|
*.nix
|
2022-01-30 17:43:48 +08:00
|
|
|
go.*
|
|
|
|
**/*.go
|
|
|
|
integration_test/
|
|
|
|
config-example.yaml
|
|
|
|
|
2022-03-18 02:20:01 +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-08-13 23:12:01 +08:00
|
|
|
|
2022-08-09 18:26:58 +08:00
|
|
|
- name: Run CLI integration tests
|
2022-01-30 17:43:48 +08:00
|
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
2022-10-24 22:46:21 +08:00
|
|
|
run: nix develop --command -- make test_integration_cli
|