fix(eval): make it so StringArg
s are not parsed to include their en…
#57
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: deploy | |
on: | |
push: | |
branches-ignore: | |
- main | |
jobs: | |
test: | |
name: Test and Compile shell | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Setup | Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | Rust | |
uses: ATiltedTree/setup-rust@v1 | |
with: | |
rust-version: stable | |
- name: Build | Compile | |
run: cargo check | |
- name: Build | Test | |
run: cargo test | |