Improve encapsulation of ByteVec API. #224
Workflow file for this run
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: Unittest | |
on: | |
schedule: | |
- cron: '0 4 * * *' # runs at 4 AM UTC (13:00 JST) | |
push: | |
branches: [ "main", "dev" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install latest nightly | |
# uses: actions-rs/toolchain@v1 | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy | |
- name: Install external dependencies | |
run: sudo apt-get update && sudo apt-get install -y libsndfile1-dev | |
- name: Run cargo check | |
uses: ClementTsang/[email protected] | |
with: | |
command: check | |
args: --verbose --all-targets --all-features | |
- name: Run tests | |
uses: ClementTsang/[email protected] | |
with: | |
command: test | |
args: --verbose --all-targets --all-features | |
- name: Run cargo check (CLI) | |
uses: ClementTsang/[email protected] | |
with: | |
command: check | |
args: --verbose --all-targets --all-features | |
directory: flacenc-bin | |
- name: Run tests (CLI) | |
uses: ClementTsang/[email protected] | |
with: | |
command: test | |
args: --verbose --all-targets --all-features | |
directory: flacenc-bin | |
lints: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install latest nightly | |
# uses: actions-rs/toolchain@v1 | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy | |
- name: Code format check | |
uses: ClementTsang/[email protected] | |
with: | |
command: fmt | |
args: --check | |
- name: Clippy | |
uses: ClementTsang/[email protected] | |
with: | |
command: clippy | |
args: --tests -- -D warnings | |
- name: Generate docs (for doc syntax checking) | |
run: cargo doc | |
- name: Code format check (CLI tools) | |
uses: ClementTsang/[email protected] | |
with: | |
command: fmt | |
args: --check | |
directory: flacenc-bin | |
- name: Clippy (CLI tools) | |
uses: ClementTsang/[email protected] | |
with: | |
command: clippy | |
args: --tests -- -D warnings | |
directory: flacenc-bin |