Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Refactor GitHub Actions workflow to consolidate build steps for Linux… #5

Refactor GitHub Actions workflow to consolidate build steps for Linux…

Refactor GitHub Actions workflow to consolidate build steps for Linux… #5

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
run: cargo build --release