Skip to content

Github workflows CI

Github workflows CI #1

Workflow file for this run

name: ci
on: [push]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- run apt update

Check failure on line 7 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: 7, Col: 15): Unexpected value 'run apt update' .github/workflows/ci.yml (Line: 8, Col: 15): Unexpected value 'run apt install valgrind'
- run apt install valgrind
build:
needs: setup
runs-on: ubuntu-latest
steps:
- run gcc --version
- run make OPTIONS=ANSI
tests:
needs: build
runs-on: ubuntu-latest
steps:
- run valgrind --version
- run make check