Skip to content

ci: use more recent version of ubuntu #3

ci: use more recent version of ubuntu

ci: use more recent version of ubuntu #3

Workflow file for this run

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