Skip to content

Migrate to the new release ci #42

Migrate to the new release ci

Migrate to the new release ci #42

Workflow file for this run

name: CI Check
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
build_and_test:
runs-on: ubuntu-latest
name: Build and Test
steps:
- uses: actions/checkout@v4
- uses: moonrepo/setup-rust@v1
- run: cargo build --all
- run: cargo test --all
check-fmt:
runs-on: ubuntu-latest
name: Check formatting
steps:
- uses: actions/checkout@v4
- uses: moonrepo/setup-rust@v1
with:
components: rustfmt
- run: cargo fmt --all -- --check