Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
guilherme-puida committed Sep 5, 2024
1 parent e291131 commit e5e05ee
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: tests
on: [push, pull_request]

jobs:
test:
name: test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
build:
- name: debug
buildtype: debug

- name: release
buildtype: release

steps:
- uses: actions/checkout@v4
name: checkout

- run: |
sudo apt-get update
sudo apt-get install meson libcriterion-dev
name: install dependencies
- run: meson setup build --buildtype=${{ matrix.build.buildtype }}
name: setup

- run: meson test -C build
name: test

0 comments on commit e5e05ee

Please sign in to comment.