Skip to content

chore: bump regex from 1.10.2 to 1.10.3 #3

chore: bump regex from 1.10.2 to 1.10.3

chore: bump regex from 1.10.2 to 1.10.3 #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call:
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- run: rustup update
- run: cargo build
- run: cargo test
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt -- --check
- run: cargo clippy
- run: "! grep -r 'dbg!' ./src"
conventional-commits:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: pip3 install -U Commitizen
# The commit hash here is that of the commit where we started using conventional commits.
- run: cz check --rev-range 5c1002b8..HEAD