Skip to content

Update release pipeline #19

Update release pipeline

Update release pipeline #19

Workflow file for this run

name: Build 🪛
on:
pull_request:
push:
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build the binary
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: cargo build --release --verbose