ci: Cleanup quotes

Prefer single quotes over double quotes, and omit them where possible.
This commit is contained in:
relrelb 2021-08-26 00:14:56 +03:00 committed by relrelb
parent 7483afa4a9
commit 2ff9d93c90
3 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@ name: Release Nightly
on: on:
# Run nightly # Run nightly
schedule: schedule:
- cron: "0 0 * * *" - cron: '0 0 * * *'
# Allow for manual dispatch on GitHub # Allow for manual dispatch on GitHub
workflow_dispatch: workflow_dispatch:
@ -235,7 +235,7 @@ jobs:
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: "14" node-version: '14'
# wasm-bindgen-cli version must match wasm-bindgen crate version. # wasm-bindgen-cli version must match wasm-bindgen crate version.
# Be sure to update in test_web.yml, web/Cargo.toml and web/README.md. # Be sure to update in test_web.yml, web/Cargo.toml and web/README.md.

View File

@ -32,10 +32,10 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
rust_version: ["stable", "beta"] rust_version: [stable, beta]
os: [ubuntu-latest, windows-latest, macOS-latest] os: [ubuntu-latest, windows-latest, macOS-latest]
include: include:
- rust_version: "nightly" - rust_version: nightly
os: ubuntu-latest os: ubuntu-latest
steps: steps:
@ -73,7 +73,7 @@ jobs:
if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest'
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
env: env:
XDG_RUNTIME_DIR: "" # dummy value, just to silence warnings about it missing XDG_RUNTIME_DIR: '' # dummy value, just to silence warnings about it missing
with: with:
command: test command: test
args: --features imgtests args: --features imgtests

View File

@ -31,7 +31,7 @@ jobs:
matrix: matrix:
node_version: ['12', '14'] node_version: ['12', '14']
# We most likely don't care about Rust versions here, we'll catch those issues in test_rust.yml. # We most likely don't care about Rust versions here, we'll catch those issues in test_rust.yml.
rust_version: ['stable'] rust_version: [stable]
# MIKE: Turning off macOS-latest for now (flaky tests on CI). # MIKE: Turning off macOS-latest for now (flaky tests on CI).
os: [ubuntu-latest, windows-latest] os: [ubuntu-latest, windows-latest]