Skip to content

Fix operator mismatch issue in tokenizer #26

Fix operator mismatch issue in tokenizer

Fix operator mismatch issue in tokenizer #26

Workflow file for this run

name: Build Status
on: [pull_request, push]
jobs:
ubuntu-build:
name: Build on Ubuntu
runs-on: ubuntu-latest
concurrency:
group: ${{ github.head_ref }}-ubuntu-build
cancel-in-progress: true
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up JDK 23
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 23
- name: Build & Test the Compiler
run: |
./gradlew clean build
- name: Generate Codecov Report
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}