Skip to content

Simple working static status #97

Simple working static status

Simple working static status #97

Workflow file for this run

name: Build/Test checks
on:
workflow_dispatch:
push:
branches:
- master
pull_request:
jobs:
check_linux_build:
runs-on: ubuntu-latest
steps:
- run: sudo apt install make gcc
- uses: actions/checkout@v4
with:
submodules: true
- run: make
env:
MC_VERSION: 1.21
DEBUG: 0
ASAN: 0
ANALYZER: 0
LTO: 1
NATIVE: 0
check_linux_test:
runs-on: ubuntu-latest
steps:
- run: sudo apt install make gcc libcriterion-dev
- uses: actions/checkout@v4
with:
submodules: true
- run: make tests_run
env:
MC_VERSION: 1.21
DEBUG: 1
ASAN: 1
ANALYZER: 1
LTO: 0
NATIVE: 0