Skip to content

Update CHANGELOG for v1.1.1 #5

Update CHANGELOG for v1.1.1

Update CHANGELOG for v1.1.1 #5

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
components: clippy, rustfmt
- name: Clippy
run: cargo clippy
- name: Format
run: cargo fmt -- --check
- name: Test
run: cargo test