Skip to content

WIP

WIP #67

Workflow file for this run

name: push-matrix
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- name: "Ubuntu latest GCC"
os: ubuntu-latest
cc: "gcc"
cxx: "g++"
- name: "Ubuntu latest Clang"
os: ubuntu-latest
cc: "clang"
cxx: "clang++"
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Build
env:
CC: ${{ matrix.config.cc }}
CXX: ${{ matrix.config.cxx }}
run: |
make
testrunner/testrunner