Bump openssl from 0.10.57 to 0.10.60 #46
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: Continuous Integration | |
on: | |
push: | |
branches: 'main' | |
pull_request: | |
branches: 'main' | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
fmt: | |
name: fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/[email protected] | |
with: { components: rustfmt } | |
- run: cargo fmt --all -- --check | |
clippy: | |
name: clippy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/[email protected] | |
with: { components: clippy } | |
- name: Cache Dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Check with Clippy | |
run: cargo clippy | |
test: | |
name: cargo test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/[email protected] | |
- name: Cache Dependencies | |
uses: Swatinem/rust-cache@v2 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'yarn' | |
cache-dependency-path: tests/fixtures/server-static/package-lock.json | |
- name: Install Node modules | |
run: cd tests/fixtures/server-static && npm install | |
shell: bash | |
- run: cargo test --all-features |