Skip to content

マルチモジュール化をrelease/v0.1.0-beta.10にマージ #20

マルチモジュール化をrelease/v0.1.0-beta.10にマージ

マルチモジュール化をrelease/v0.1.0-beta.10にマージ #20

Workflow file for this run

name: Unit test & Code check
on:
push:
branches: [ "main" ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up clippy
run: rustup component add clippy
- name: Code review with clippy
uses: giraffate/clippy-action@v1
with:
reporter: 'github-pr-review'
filter_mode: 'nofilter'
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Build check
run: cargo build --verbose
- name: Unit Testing
run: cargo test --verbose