Skip to content

CI: build with clang and gcc #42

CI: build with clang and gcc

CI: build with clang and gcc #42

Workflow file for this run

name: C/C++ CI
on: [push]
strategy:

Check failure on line 5 in .github/workflows/c-cpp.yml

View workflow run for this annotation

GitHub Actions / C/C++ CI

Invalid workflow file

The workflow is not valid. .github/workflows/c-cpp.yml (Line: 5, Col: 1): Unexpected value 'strategy'
matrix:
compiler: [gcc, clang]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: make
env:
CC: ${{ matrix.compiler }}
run: make
- name: make test
run: make test