Skip to content

Fix/roxygen macro fully qualified path parsing #40

Fix/roxygen macro fully qualified path parsing

Fix/roxygen macro fully qualified path parsing #40

Workflow file for this run

name: lints
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
# Runs the workflow at 00:00 on the first day of every month
- cron: '0 0 1 * *'
env:
CARGO_TERM_COLOR: always
jobs:
check-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Check formatting
run: cargo fmt -- --check
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install clippy
run: rustup component add clippy
- name: Run clippy
run: cargo clippy