spin 3 postgres support #76
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", "v*"] | |
tags: ["v*"] | |
pull_request: | |
branches: ["main", "v*"] | |
paths-ignore: | |
- "README.md" | |
env: | |
RUST_VERSION: 1.73 | |
jobs: | |
lint-and-test: | |
name: Lint and Test | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
shared-key: "${{ runner.os }}-full-${{ hashFiles('./Cargo.lock') }}" | |
- name: Install Rust toolchain | |
shell: bash | |
run: | | |
rustup toolchain install ${{ env.RUST_VERSION }} --component clippy --component rustfmt | |
rustup default ${{ env.RUST_VERSION }} | |
rustup target add wasm32-wasi | |
- name: Lint | |
shell: bash | |
run: | | |
cargo fmt --all -- --check | |
cargo clippy --workspace --all-targets -- -D warnings | |
- name: Test | |
shell: bash | |
run: cargo test --workspace | |