diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b004a0..6be338a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,24 +7,15 @@ on: - main jobs: - compare-dist: + test-build: name: Test build uses: ./.github/workflows/test-build.yml test-action: - name: Test the action on ubuntu-latest + name: Test the action uses: ./.github/workflows/test-action.yml + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] with: - runs-on: ubuntu-latest - - test-action-windows-latest: - name: Test the action on windows-latest - uses: ./.github/workflows/test-action.yml - with: - runs-on: windows-latest - - test-action-macos-latest: - name: Test the action on macos-latest - uses: ./.github/workflows/test-action.yml - with: - runs-on: macos-latest + runs-on: ${{ matrix.os }}