This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
chore(deps): bump thiserror from 1.0.58 to 1.0.61 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
fmt: | |
name: Format | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-fmt | |
check-crates: | |
name: Check crates | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-crates | |
check-crates-msrv: | |
name: Check crates (MSRV) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-crates-msrv | |
check-bindings: | |
name: Check bindings | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-bindings | |
check-docs: | |
name: Check docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install just | |
run: cargo install just | |
- name: Check | |
run: just check-docs |