Skip to content

Version 0.28.4

Version 0.28.4 #1327

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
tags:
- "*"
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup | Cache Cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ubuntu-test-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Test
run: make test