Skip to content

s3_monitor: download with .tmp prefix and rename, to play nicely with… #28

s3_monitor: download with .tmp prefix and rename, to play nicely with…

s3_monitor: download with .tmp prefix and rename, to play nicely with… #28

Workflow file for this run

---
name: Lint files
on:
push:
workflow_dispatch:
pull_request:
jobs:
pre-commit:
runs-on: ubuntu-latest
env:
python_version: "3.11"
go_version: "1.23"
goimports_version: "v0.25.0"
tflint_version: "v0.47.0"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ env.python_version }}
- uses: actions/setup-go@v5
with:
go-version: ${{ env.go_version }}
- run: |
go install golang.org/x/tools/cmd/goimports@${{ env.goimports_version }}
- uses: terraform-linters/setup-tflint@v4
with:
tflint_version: ${{ env.tflint_version }}
- uses: pre-commit/[email protected]