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