Bump actions/setup-python from 2 to 5 #134
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: Duplicate checker | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'amazon.txt' | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
duplicates: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: actions/checkout@v4 | |
name: Python setup | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.8 | |
- name: Install pytest | |
run: pip install pytest | |
- name: Check for duplicate lines | |
run: | | |
cd scripts | |
pytest |