Skip to content

Update bump-dependencies #748

Update bump-dependencies

Update bump-dependencies #748

Workflow file for this run

name: lint-test-build-push
on:
push:
paths-ignore:
- "**/*.md"
- "docs/**"
- ".github/workflows/deploy-docs.yml"
- "renovate.json5"
branches:
- "**"
tags:
- "*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
id-token: write
jobs:
lint-test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version: ">=1.25.1"
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9
with:
version: latest
- name: lint
run: make lint
- name: Build
run: make build
- name: Put fixture in place
run: cp scyllaridae.example.yml scyllaridae.yml
- name: unit tests
run: make test
- name: integration tests
run: make integration-test