Skip to content

Bump rust from 1.69.0 to 1.71.1 #202

Bump rust from 1.69.0 to 1.71.1

Bump rust from 1.69.0 to 1.71.1 #202

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- '**'
- '!trunk'
jobs:
debug_build_and_checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
profile: minimal
components: clippy
- uses: actions-rs/cargo@v1.0.3
name: cargo build
with:
command: build
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
release_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
profile: minimal
- uses: actions-rs/cargo@v1.0.3
name: cargo build
with:
command: build
args: --release
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: docker build .
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: nightly
override: true
profile: minimal
components: rustfmt
- uses: actions-rs/cargo@v1.0.3
name: cargo fmt
with:
command: fmt
args: -- --check