Skip to content

Set compiler flags in CI workflow #2

Set compiler flags in CI workflow

Set compiler flags in CI workflow #2

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ["main"]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
- name: Build SWT
run: CFLAGS="-Werror -Wall -Wextra -Wpedantic -Wno-unused-parameter" make
- name: Run tests
run: make check