Skip to content

continuous integration #4

continuous integration

continuous integration #4

Workflow file for this run

name: CI
run-name: continuous integration
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-latest]
cc: [gcc, clang]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- run: ./tests/test.sh
shell: bash
with:

Check failure on line 15 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 15, Col: 9): Unexpected value 'with'
env:
CC: ${{ matrix.cc }}