Skip to content

Commit

Permalink
chore(test): update
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Jul 25, 2022
1 parent bf40fde commit a9318b0
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,30 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
bun-version:
["latest", "0.1.4", "canary"]
["latest", "0.1.4"]
misc-test-builds:
[false]

steps:
- uses: actions/checkout@v2

- name: Setup Bun - Test Builds * ${{ matrix.misc-test-builds }}
uses: ./
with:
bun-version: ${{ matrix.bun-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
misc-test-builds: ${{ matrix.misc-test-builds }}

- name: Try bun
run: |
bun --version
test-canary:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
bun-version:
["canary"]
misc-test-builds:
[false]

Expand All @@ -23,7 +46,6 @@ jobs:

- name: Setup Bun - Test Builds * ${{ matrix.misc-test-builds }}
uses: ./
if: (${{ matrix.os }} == 'macos-latest' && ${{ matrix.bun-version }} != "canary") || ${{ matrix.os }} == 'ubuntu-latest'
with:
bun-version: ${{ matrix.bun-version }}
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit a9318b0

Please sign in to comment.