Bump tough-cookie from 4.0.0 to 4.1.3 in /worker #515
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
code-standards: | |
name: Code standards | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Update Rust | |
run: rustc --version && rustup update | |
- name: Run rustfmt | |
run: git ls-files '*.rs' | xargs rustfmt --check --edition 2021 --verbose | |
- name: Verify no mangled parens | |
run: if git grep ',)' '*.rs'; then exit 1; fi | |
- name: Run Clippy | |
run: cargo clippy --workspace -- --deny warnings | |
unit-tests: | |
name: Unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Update Rust | |
run: rustc --version && rustup update | |
- name: Run unit tests | |
run: cargo test --workspace --verbose | |
# browser-wasm-tests: | |
# name: Browser WASM tests (Firefox and Chrome) | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# with: | |
# submodules: recursive | |
# - name: Install wasm-pack | |
# run: npm install -g wasm-pack | |
# - name: Run Firefox WASM tests | |
# run: wasm-pack test --firefox --headless | |
# working-directory: web | |
# - name: Run Chrome WASM tests | |
# run: wasm-pack test --chrome --headless | |
# working-directory: web |