Skip to content

chore: minor changes #126

chore: minor changes

chore: minor changes #126

Workflow file for this run

name: build_test

Check failure on line 1 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

(Line: 21, Col: 9): Unexpected value 'run'
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
Build:
runs-on: ubuntu-latest
outputs:
RUNNER: '${{ runner.name }}'
steps:
- name: Checkout code
uses: actions/checkout@v4
run: |
sudo sh devutils/install_dep.sh
- name: Configure project
run: |
mkdir builddir
meson setup builddir/ --buildtype=release
- name: Build project
run: ninja -k 1 -C builddir
# - name: Run unit tests
# run: |
# meson test -C builddir