From 3e3e4aa46c848f39ee66055a60a7cf221bdfe240 Mon Sep 17 00:00:00 2001 From: Andrew Langmeier Date: Mon, 24 Mar 2025 19:34:18 -0400 Subject: [PATCH 1/2] Create integration.yml Lines can be uncommented to easily extend this action. If compile times are long, could look into a dependency caching action. Signed-off-by: Andrew Langmeier --- .github/workflows/integration.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/integration.yml diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml new file mode 100644 index 0000000..3c3af97 --- /dev/null +++ b/.github/workflows/integration.yml @@ -0,0 +1,29 @@ +name: integration + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + integration: + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + + runs-on: ${{ matrix.os }} + + steps: + - uses: actions/checkout@v4 + - name: Ensure `cargo fmt` was run + run: cargo fmt --check + #- name: Ensure `cargo clippy` is satisfied + #run: cargo clippy + - name: Build + run: cargo build + #- name: Test + #run: cargo test From 41e166d01e5af05b6c6ef0561572a23637affbb9 Mon Sep 17 00:00:00 2001 From: Andrew Langmeier Date: Mon, 24 Mar 2025 19:44:00 -0400 Subject: [PATCH 2/2] Update integration.yml Try and get something minimal that works Signed-off-by: Andrew Langmeier --- .github/workflows/integration.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 3c3af97..8fb45af 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -11,11 +11,7 @@ env: jobs: integration: - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] - - runs-on: ${{ matrix.os }} + runs-on: "macos-latest" steps: - uses: actions/checkout@v4