Skip to content

lint workflow run name #23

lint workflow run name

lint workflow run name #23

Workflow file for this run

name: lint-workflow-name
run-name: lint workflow run name
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
defaults:
run:
shell: bash
jobs:
lint-job-identifier:
name: lint job name
strategy:
fail-fast: false
matrix:
runner-platform:
- ubuntu-latest
python-version:
- "3.10"
- "3.11"
runs-on: ${{ matrix.runner-platform }}
steps:
- name: checkout commit
uses: actions/checkout@v3
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
check-latest: true
architecture: x64
cache: pip
- name: run linters on python ${{ matrix.python-version }}
uses: ./.github/actions/nox-tags-action-identifier
with:
tag-name-input-identifier: lint
python-version-input-identifier: ${{ matrix.python-version }}