Skip to content

feat(rust): automated deployment to fly.io #22

feat(rust): automated deployment to fly.io

feat(rust): automated deployment to fly.io #22

Workflow file for this run

name: Continuous Integration
on: pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust:
runs-on: ubuntu-latest
env:
RUSTFLAGS: '-Dwarnings' # Never tolerate warnings.
defaults:
run:
working-directory: ./rust-peer
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo fmt -- --check
- run: cargo clippy
- run: cargo test