Add voice back #184
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: Test | |
on: | |
pull_request_target: | |
branches: | |
- main | |
jobs: | |
build_and_test: | |
name: Test Parser Rust | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: src/parser | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- name: Build in src/parser directory | |
run: cargo test --release |