Introduce audio_clip_move_to_track
#90
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: Build and Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
container: | |
image: holgermogensen/voil-ci:adae | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: rustup default stable | |
- name: Check with Clippy | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
- name: Run Tests | |
run: cargo test |