Skip to content

Extended parser to recognize list indexing in primary expressions #15

Extended parser to recognize list indexing in primary expressions

Extended parser to recognize list indexing in primary expressions #15

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Install dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y build-essential
- name: Build with Make
working-directory: ./mas
shell: bash
run: make
- name: Upload executable as artifact
uses: actions/upload-artifact@v4
with:
name: mas-${{ runner.os }}
path: |
mas/mas
mas/mas.exe
if-no-files-found: ignore # OK if one is missing
- name: Clean (optional)
working-directory: ./mas
shell: bash
run: make clean