name: Test
on:
push:
branches:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: codeberg-small
container:
image: ghcr.io/catthehacker/ubuntu:rust-latest
steps:
- uses: https://github.com/actions/checkout@v6
- uses: https://github.com/Swatinem/rust-cache@v2.8.2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose