This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
Make the headers method not override existing headers #34
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: CI | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-**' | |
pull_request: | |
jobs: | |
ci: | |
name: Lint and test | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@1.78.0 | |
with: | |
targets: wasm32-wasi | |
components: clippy, rustfmt | |
- name: cargo fmt | |
run: cargo fmt --all -- --check | |
- name: cargo clippy | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
- name: Install wasmtime | |
uses: bytecodealliance/actions/wasmtime/setup@v1 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
version: "v21.0.1" | |
- name: cargo test | |
run: cargo test |