Skip to content

Changelog

Changelog #2

Workflow file for this run

name: Release
on:
push:
tags:
- v*
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-20.04
defaults:
run:
shell: bash
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Cache
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.rustup
target
key: ${{ runner.os }}-${{ matrix.rust }}-min165
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Test Lib
run: cargo test