Skip to content

Run tests

Run tests #26

Workflow file for this run

name: format
'on':
pull_request:
push:
branches:
- trunk
env:
UBSAN_OPTIONS: print_stacktrace=1
jobs:
posix:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
name: 'format'
runs-on: ${{matrix.os}}
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
- uses: actions/checkout@v2
with:
submodules: true
- name: Install dependencies
run: |
sudo make install-compiler compiler=clang version=17
sudo apt install clang-format-17
sudo apt install python3
- name: Format
run: |
make format
- name: Check format sources
run: |
make check-git-status