Skip to content

Update GitHub actions #39

Update GitHub actions

Update GitHub actions #39

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
run: sudo apt install libglib2.0-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose