Skip to content

Call setpwd.sh instead of symlink.sh in GH action #71

Call setpwd.sh instead of symlink.sh in GH action

Call setpwd.sh instead of symlink.sh in GH action #71

Workflow file for this run

name: Lint
on:
push:
paths:
- '**.py'
jobs:
flake8_py3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v1
with:
python-version: 3.12
- name: Install ruff
run: pip install ruff
- name: Run ruff
uses: jpetrucciani/ruff-check@main
with:
checkName: 'ruff_lint' # NOTE: this needs to be the same as the job name
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}