Skip to content

Use ?= instead of := to use env variables when possible #33

Use ?= instead of := to use env variables when possible

Use ?= instead of := to use env variables when possible #33

Workflow file for this run

name: Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run_tests:
runs-on: ubuntu-24.04
strategy:
matrix:
compiler: [ clang-18, clang-17, clang-16, clang-15, clang-14, gcc-14, gcc-13, gcc-12, gcc-11 ]
env:
COMPILERS: ${{matrix.compiler}}
steps:
- uses: actions/checkout@v4
- name: Install packages
run: sudo apt-get install -y wdiff $COMPILERS
- name: Run tests
run: make tests -j $(nproc)