Skip to content

feat(git): add a few more tag formats #16

feat(git): add a few more tag formats

feat(git): add a few more tag formats #16

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
rustfmt:
name: rustfmt / stable
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formatting
run: cargo fmt --check
clippy:
name: clippy / stable
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Clippy check
run: cargo clippy --all-features --all-targets -- -D warnings
test:
name: test / stable
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run tests
run: cargo test