Skip to content

Commit

Permalink
Add .github/workflows/code_checks.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Sep 28, 2023
1 parent e831b8b commit cd92d90
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/code_checks.yml
@@ -0,0 +1,19 @@
name: Code Checks

on: [push, pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:

linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: pre-commit/action@v3.0.0

0 comments on commit cd92d90

Please sign in to comment.