Skip to content

feature: support requiring capture group match in template string (#11) #28

feature: support requiring capture group match in template string (#11)

feature: support requiring capture group match in template string (#11) #28

Workflow file for this run

name: rust-ci
on:
release:
types: [created]
pull_request:
push:
branches:
- main
workflow_call:
jobs:
lint-rust:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt