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