Skip to content

Commit

Permalink
Revert changing single quotes to double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
aaruni96 committed Oct 16, 2024
1 parent c2eee44 commit da26461
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on:
push:
branches:
- master
- "release-*"
- 'release-*'
pull_request:
schedule:
# Every day at 3:10 AM UTC
- cron: "10 3 * * *"
- cron: '10 3 * * *'
workflow_dispatch:

# needed to allow julia-actions/cache to delete old caches that it has created
Expand All @@ -31,36 +31,36 @@ jobs:
fail-fast: false
matrix:
julia-version:
- "1.6"
- "1.10"
- "1.11-nightly"
- "nightly"
group: ["short", "long"]
- '1.6'
- '1.10'
- '1.11-nightly'
- 'nightly'
group: ['short', 'long']
os:
- [Linux, RPTU]
depwarn: [""]
depwarn: ['']
include:
# Add a single job per group with deprecation errors on the most recent stable julia version
- julia-version: "1.10"
group: "short"
- julia-version: '1.10'
group: 'short'
os: [Linux, RPTU]
depwarn: "depwarn=error"
- julia-version: "1.10"
group: "long"
depwarn: 'depwarn=error'
- julia-version: '1.10'
group: 'long'
os: [Linux, RPTU]
depwarn: "depwarn=error"
depwarn: 'depwarn=error'
# Add a few macOS jobs (not too many, the number we can run in parallel is limited)
- julia-version: "1.10"
group: "short"
- julia-version: '1.10'
group: 'short'
os: [macOS, RPTU] # runs on self-hosted runner
- julia-version: "1.10"
group: "long"
- julia-version: '1.10'
group: 'long'
os: [macOS, RPTU] # runs on self-hosted runner
- julia-version: "1.10"
group: "book"
- julia-version: '1.10'
group: 'book'
os: [macOS, RPTU] # runs on self-hosted runner
- julia-version: "nightly"
group: "book"
- julia-version: 'nightly'
group: 'book'
os: [macOS, RPTU] # runs on self-hosted runner
# nightly on macos is disabled for now since the macos jobs take too long
# with just 5 runners
Expand Down Expand Up @@ -131,19 +131,19 @@ jobs:
fail-fast: false
matrix:
julia-version:
- "1.10"
- "1.11-nightly"
- "nightly"
- '1.10'
- '1.11-nightly'
- 'nightly'
os:
- [Linux, RPTU]
depwarn: [""]
depwarn: ['']
include:
# Add a single job with deprecation errors on the most recent stable julia version
- julia-version: "1.10"
- julia-version: '1.10'
os: [Linux, RPTU]
depwarn: "depwarn=error"
depwarn: 'depwarn=error'
# Add macOS jobs (not too many, the number we can run in parallel is limited)
- julia-version: "1.10"
- julia-version: '1.10'
os: [macOS, RPTU] # runs on self hosted runner

steps:
Expand Down

0 comments on commit da26461

Please sign in to comment.