Skip to content

Reorganize repo (#11) #1

Reorganize repo (#11)

Reorganize repo (#11) #1

on:
push:
branches:
- "*"
paths:
- fixtures/**
- packages/cargo/**
jobs:
test-unit:
runs-on: ubuntu-latest
container: rust:1.73-alpine3.17
env:
CARGO_HOME: ${{ github.workspace }}/.cargo
steps:
- uses: actions/checkout@v4
- run: apk add build-base
- run: cargo test --all-targets
test-lint:
runs-on: ubuntu-latest
container: rust:1.73-alpine3.17
env:
CARGO_HOME: ${{ github.workspace }}/.cargo
steps:
- uses: actions/checkout@v4
- run: apk add musl-dev
- run: rustup component add clippy
- run: cargo clippy --all-targets