Skip to content

Bump gaurav-nelson/github-action-markdown-link-check (#25) #69

Bump gaurav-nelson/github-action-markdown-link-check (#25)

Bump gaurav-nelson/github-action-markdown-link-check (#25) #69

Workflow file for this run

name: Push tester
on:
pull_request:
push:
branches:
- master
jobs:
rust_checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
with:
toolchain: stable
profile: minimal
components: rustfmt, clippy
- name: Check formatting
uses: actions-rs/[email protected]
with:
command: fmt
args: --all -- --check
- name: Run tests
uses: actions-rs/[email protected]
with:
command: test
args: --all --all-features
- name: Run clippy
uses: actions-rs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
markdown_links_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gaurav-nelson/[email protected]