Skip to content

fuck aarch64 you can build your own damn release #40

fuck aarch64 you can build your own damn release

fuck aarch64 you can build your own damn release #40

Workflow file for this run

on:
- push
- pull_request
name: CI
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: "0"
jobs:
build_and_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- x86_64-unknown-linux-gnu
# - x86_64-pc-windows-gnu
- x86_64-unknown-linux-musl
steps:
- name: Install target
run: rustup target add ${{ matrix.target }}
- uses: actions/checkout@v4
- name: Build
run: cargo check --target ${{ matrix.target }} --verbose
- name: Run tests
run: cargo test --target ${{ matrix.target }} --verbose
- name: Run clippy
run: cargo clippy
- name: Run rustfmt
run: cargo fmt --check