Merge pull request #147 from wilhelm-lab/main #592
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: cookietemple lint | |
on: [push] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Check out source-code repository | |
- name: Setup Python | |
uses: actions/setup-python@v5.1.1 | |
with: | |
python-version: 3.9 | |
- name: Install cookietemple | |
run: pip install cookietemple==1.4.1 | |
- name: Run cookietemple lint | |
run: cookietemple lint . |