Skip to content

Change calibrate field coordinates to action #25

Change calibrate field coordinates to action

Change calibrate field coordinates to action #25

Workflow file for this run

name: Lint Check
on:
# Trigger the workflow on push to main or any pull request.
push:
branches:
- main
pull_request:
permissions: { }
jobs:
run-linters:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Super-linter
uses: super-linter/[email protected] # x-release-please-version
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_PYTHON_FLAKE8: true
VALIDATE_PYTHON_RUFF: true
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}