Skip to content

Add GitHub Actions-based binary releases #123

Add GitHub Actions-based binary releases

Add GitHub Actions-based binary releases #123

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build-x86_64:
steps:
- uses: juankaram/rust-musl-action@master
args: cargo build --target x86_64-unknown-linux-musl --release

Check failure on line 25 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 25, Col: 9): Unexpected value 'args' .github/workflows/rust.yml (Line: 23, Col: 5): Required property is missing: runs-on