Skip to content

(github) fix: separate workflows + fix toolchain installation #2

(github) fix: separate workflows + fix toolchain installation

(github) fix: separate workflows + fix toolchain installation #2

Workflow file for this run

name: Build
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
- name: Cargo build
run: cargo build --release --verbose