Upgrade pyo3 from v0.20 to v0.22 #409
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- shell: pwsh | |
run: | | |
Get-ChildItem (Join-Path eng problem-matchers) | ForEach-Object { | |
Write-Host "Adding matcher $_..." | |
Write-Host "::add-matcher::$_" | |
} | |
- uses: nosborn/[email protected] | |
with: | |
files: . | |
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
with: | |
use-verbose-mode: yes | |
config-file: eng/markdown-link-check.json |