725.conflict resolution #475
Workflow file for this run
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: Code Linting | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
codechecks: | |
strategy: | |
matrix: | |
python-version: | |
- "3.9" | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v2 | |
with: | |
# Get enough history for the tags we get next to be meaningful. 0 | |
# means all history. | |
fetch-depth: "0" | |
# Checkout head of the branch of the PR, or the exact revision | |
# specified for non-PR builds. | |
ref: "${{ github.event.pull_request.head.sha || github.sha }}" | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: codechecks | |
run: tox -e codechecks |