Skip to content

Add: Finish walker and typer (not tested version) #24

Add: Finish walker and typer (not tested version)

Add: Finish walker and typer (not tested version) #24

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
- name: Test Analyzer
run: cargo test --verbose
working-directory: src/analyser