Skip to content

CI: enable cache

CI: enable cache #10

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
run-tests:
runs-on: ubuntu-latest
container: ubuntu:24.04
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- name: Install deps
run: |
apt update
apt install -y libgtk-4-dev cargo
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
- run: cargo build --verbose
- run: cargo test --verbose