Skip to content

Fix handling of empty vararg pasting #15

Fix handling of empty vararg pasting

Fix handling of empty vararg pasting #15

Workflow file for this run

name: C Build and Test
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build-and-test-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@main
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential make perl default-jre
- name: Verify installations
run: |
make --version
perl --version
java -version
- name: Compile the project
run: make
- name: Run tests
run: make test
build-and-test-macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@main
- name: Install dependencies
run: |
brew install make
brew install perl
brew install openjdk
- name: Verify installations
run: |
make --version
perl --version
java -version
- name: Compile the project
run: make
- name: Run tests
run: make test