Skip to content

New:: Finish writing ScopeTable and ScopeStack... To implement the te… #16

New:: Finish writing ScopeTable and ScopeStack... To implement the te…

New:: Finish writing ScopeTable and ScopeStack... To implement the te… #16

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
paths:
- 'src/**'
pull_request:
branches: [ "main" ]
paths:
- 'src/**'
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test Parser
run: cargo test --verbose
working-directory: src/parser
- name: Test Lexer
run: cargo test --verbose
working-directory: src/lexer