Skip to content

build: update build #19

build: update build

build: update build #19

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: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '20.11.0'
- name: cargo check
run: cargo check --workspace
- name: cargo clippy
run: cargo clippy -- -D clippy::pedantic
- name: cargo fmt
run: cargo fmt -- --check
- name: build
run: cargo run --package tool-dev -- build linux
- name: test
run: cargo run --package tool-dev -- test linux