refactor: refactor parser ast into separate modules #28
This file contains hidden or 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: Run Tests | |
on: | |
- push | |
- pull_request | |
- workflow_dispatch | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Rustup and Cargo | |
run: | | |
rustup update nightly \ | |
&& rustup default nightly \ | |
&& rustup component add rust-src --toolchain nightly | |
- uses: Swatinem/rust-cache@v2 | |
- uses: actions/checkout@v4 | |
- name: Run Tests | |
run: ls -a && cargo test |