Skip to content

Commit

Permalink
Fixed the testing workflow
Browse files Browse the repository at this point in the history
We previously used the value of `''` (empty string) to download the
latest release of Quarto, so that we could then use `pre-release`
for the pre-release.

However, Quarto changed their setup workflow, the empty string is
not taken as-is, which means we tried to download the version `v`
(which does not exist).
We must now use `release` for the release (latest stable) version.
  • Loading branch information
rchaput committed Oct 29, 2023
1 parent 983f106 commit 3b5c191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
strategy:
# We want to try all combinations, even if one fails
fail-fast: false
# Run the release version of quarto (empty string) for all OS
# Run the release version of quarto for all OS
matrix:
quarto_version: ['']
quarto_version: [release]
os: [ubuntu-latest, windows-latest, macos-latest]
# Additionally, we want to run the `pre-release` version for Ubuntu
include:
Expand Down

0 comments on commit 3b5c191

Please sign in to comment.