Skip to content

Fix Python wheel version and Go test filename in release #516

Fix Python wheel version and Go test filename in release

Fix Python wheel version and Go test filename in release #516

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
env:
CLJ_KONDO_VERSION: "2024.11.14"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install clj-kondo
run: |
curl -sLO "https://github.com/clj-kondo/clj-kondo/releases/download/v${CLJ_KONDO_VERSION}/clj-kondo-${CLJ_KONDO_VERSION}-linux-amd64.zip"
unzip -o "clj-kondo-${CLJ_KONDO_VERSION}-linux-amd64.zip" -d /usr/local/bin
rm "clj-kondo-${CLJ_KONDO_VERSION}-linux-amd64.zip"
clj-kondo --version
- name: Run clj-kondo
run: clj-kondo --lint src test