Skip to content

build: add target argument #23

build: add target argument

build: add target argument #23

Workflow file for this run

name: Lint, Build and Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
lint-build-test:
runs-on: ${{ matrix.runner }}
strategy:
matrix:
runner: [ubuntu-latest, windows-latest, macos-latest]
include:
- runner: ubuntu-latest
target: x86_64-unknown-linux-musl
- runner: windows-latest
target: x86_64-pc-windows-msvc
- runner: macos-latest
target: x86_64-apple-darwin
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20.11.0'
- name: Check
run: cargo run --package tool-dev -- check
- name: Clippy
run: cargo run --package tool-dev -- clippy
- name: Format
run: cargo run --package tool-dev -- fmt
- name: Build
run: cargo run --package tool-dev -- build --target ${{ matrix.target }}
- name: Test
run: cargo run --package tool-dev -- test --target ${{ matrix.target }}