Skip to content

AStyle formatting, README #31

AStyle formatting, README

AStyle formatting, README #31

Workflow file for this run

name: push-matrix
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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
testanalyzer/testanalyzer