Skip to content

Commit

Permalink
add rc version to jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
c4spar committed Sep 25, 2024
1 parent eb582ab commit dae3a97
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
deno_version: [canary]
deno_version: [canary, rc]
env:
RUST_BACKTRACE: full
DENO_FUTURE: 1
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ on:
pull_request:
jobs:
lint:
name: Lint source
name: Lint source deno-${{ matrix.deno }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
deno: [v1.x, rc]
env:
RUST_BACKTRACE: full
DENO_FUTURE: 1
Expand All @@ -17,7 +21,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
deno-version: ${{ matrix.deno }}

- name: Setup shellcheck
run: >
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
module: [ansi, command, flags, keycode, keypress, prompt, table, testing]
os: [macOS-latest, windows-latest, ubuntu-latest]
deno: [v1.x]
deno: [v1.x, rc]
env:
RUST_BACKTRACE: full
DENO_FUTURE: 1
Expand Down

0 comments on commit dae3a97

Please sign in to comment.