Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
siwatanejo committed Mar 10, 2024
1 parent 65288d2 commit 0b40abb
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,19 @@ jobs:
path: ./*.snap

integration_tests:
strategy:
matrix:
# macos-13 is x64 and macos-14 is arm64
os: [ubuntu-22.04, macos-13, macos-14]

needs: build_snap
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Install required dependencies
run: |
apt update
apt install --yes sudo
sudo apt update
sudo apt install --yes sudo
- name: Setup .NET
run: |
# We need to install `ca-certificates`, otherwise we get these errors in the CI:
Expand Down

0 comments on commit 0b40abb

Please sign in to comment.