Skip to content

Fix section in build workflow. #2

Fix section in build workflow.

Fix section in build workflow. #2

Workflow file for this run

name: Build Wirdigen
on: [ push, pull_request ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build sources
uses: actions-rs/cargo@v1
with:
command: build
args: --release