Skip to content

chore: Configure Renovate #23

chore: Configure Renovate

chore: Configure Renovate #23

Workflow file for this run

---
name: ci
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions:
contents: read
## Concurrency only allowed in the main branch.
## So old builds running for old commits within the same Pull Request are cancelled
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: ['1.18.x', '1.22.x']
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
cache-dependency-path: '**/go.sum'
- uses: dominikh/staticcheck-action@v1.3.1
if: ${{ matrix.go-version == '1.22.x' }}
with:
version: "2023.1.7"
install-go: false
cache-key: ${{ matrix.go-version }}
- name: Test
run: ${{ startsWith(matrix.os,'windows') && '.ci/scripts/test.bat' || '.ci/scripts/test.sh' }}
env:
GO_VERSION: ${{ matrix.go-version }}
- name: Store test results
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: test-results
path: build/junit*.xml