ci: use more recent version of ubuntu #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Meson Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v1 | |
with: | |
deno-version: v1.x | |
- name: Install Meson | |
run: | | |
sudo apt-get update | |
sudo apt-get install meson | |
- name: Create Build Environment | |
run: meson setup ${{github.workspace}}/build | |
- name: Build | |
working-directory: ${{github.workspace}}/build | |
shell: bash | |
run: ninja | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
shell: bash | |
run: meson test --suite deno-gi --print-errorlogs |