Make sure aperture levels are still computed/stored if skipping apphot_bg #1536
This file contains hidden or 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: Flake8 Linting | |
| on: | |
| pull_request: | |
| types: [opened,reopened,synchronize] | |
| push: | |
| branches: | |
| - 'main' | |
| - 'releases/**' | |
| jobs: | |
| lint: | |
| name: flake8 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.event.pull_request.head.ref }} | |
| - uses: tonybajan/flake8-check-action@v1.6.0 | |
| with: | |
| select: E1,E2,E3,E4,E5,E7,W6,F | |
| ignore: W504,W503,E704,E226,E722 | |
| maxlinelength: 80 | |
| repotoken: ${{ secrets.GITHUB_TOKEN }} | |