Skip to content

Update action versions #61

Update action versions

Update action versions #61

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
- uses: Panquesito7/[email protected]
with:
version: dev
directory: .
add-to-path: true
extra-command: version
- name: Compile Tests
run: |
julec -t .
clang++ -O0 --std=c++17 -Wno-everything -o ./tests.out ./dist/ir.cpp
git update-index --add --chmod=-x ./tests.out
chmod +x ./tests.out
- name: Run Tests
run: |
./tests.out
- name: Cleanup
run: |
rm -f tests.out