Skip to content

gh-actions: actions-rs is archived #1

gh-actions: actions-rs is archived

gh-actions: actions-rs is archived #1

Workflow file for this run

name: Branches
on:
push:
branches-ignore:
- "main"
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- name: Build examples
run: |
cargo build --examples
- name: Build release config
run: |
cargo build --release
command: build
args: --release
- name: Check formatting
run: |
cargo fmt --all -- --check
- name: Check formatting
run: |
cargo clippy -- -D warnings