Skip to content

linux

linux #91

Workflow file for this run

name: linux
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
workflow_dispatch:
schedule:
- cron: '30 1 * * 0'
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
pip install meson ninja
- name: Build
run: |
meson --buildtype=plain . ./build
ninja -C ./build
env:
CC: gcc