Skip to content

Commit abb26f3

Browse files
authored
Merge branch 'main' into automated
2 parents 5447962 + 1a09907 commit abb26f3

52 files changed

Lines changed: 8022 additions & 309 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/agnix-config-validate-report.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Agnix config validation report
22

33
on:
44
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
105

116
permissions:
127
contents: read
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: CLI integration tests
2+
3+
on:
4+
push:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
cli-integration-tests:
11+
name: Run cli integration tests
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, macos-latest, windows-latest]
16+
timeout-minutes: 25
17+
steps:
18+
- name: Check out repository
19+
uses: actions/checkout@v6
20+
21+
- name: Install Nix
22+
if: matrix.os != 'windows-latest'
23+
uses: cachix/install-nix-action@v31
24+
25+
- name: Run CLI integration test app
26+
if: matrix.os != 'windows-latest'
27+
run: nix run .#cli-integration-tests
28+
29+
- name: Install Rust toolchain
30+
if: matrix.os == 'windows-latest'
31+
uses: dtolnay/rust-toolchain@stable
32+
33+
- name: Run setup integration tests on Windows
34+
if: matrix.os == 'windows-latest'
35+
working-directory: cli
36+
run: cargo test --test setup_integration

.github/workflows/nix-flake-check.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Nix flake check
22

33
on:
44
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
105

116
permissions:
127
contents: read

.github/workflows/pkl-generated-parity.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Pkl generated parity
22

33
on:
44
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
105

116
permissions:
127
contents: read

.github/workflows/workflow-token-count.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ name: Workflow token count
22

33
on:
44
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
105

116
permissions:
127
contents: read

0 commit comments

Comments
 (0)