byte 列から BC を復元して BCT に挿入する関数を追加 #225
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
pull_request: | |
env: | |
CARGO_INCREMENTAL: 0 | |
jobs: | |
rust: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy, rustfmt | |
- name: cache dependencies | |
uses: Swatinem/[email protected] | |
- name: reviewdog / clippy | |
uses: sksat/[email protected] | |
with: | |
reporter: ${{ github.event_name == 'pull_request' && 'github-pr-review' || 'github-check' }} | |
clippy_flags: --all-features | |
- name: unit test | |
run: cargo test |