Skip to content

chore(release-please): release module-swapper 0.4.7 #219

chore(release-please): release module-swapper 0.4.7

chore(release-please): release module-swapper 0.4.7 #219

name: Module Swapper Tests
on:
pull_request:
branches:
- 'master'
paths:
- 'infra/module-swapper/**'
- '.github/workflows/go-module-swapper.yml'
concurrency:
group: '${{github.workflow}}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
unit:
name: ${{ matrix.operating-system }} unit tests
runs-on: ${{ matrix.operating-system }}
defaults:
run:
shell: bash
working-directory: 'infra/module-swapper'
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version-file: infra/module-swapper/go.mod
cache-dependency-path: infra/module-swapper/go.sum
- run: |-
go test ./... -v
golangci:
name: lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
go-version-file: infra/module-swapper/go.mod
cache-dependency-path: infra/module-swapper/go.sum
- name: golangci-lint
uses: golangci/golangci-lint-action@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.1
with:
version: latest
working-directory: 'infra/module-swapper'
args: --timeout=5m