Skip to content

chore(master): release module-swapper 0.4.2 #163

chore(master): release module-swapper 0.4.2

chore(master): release module-swapper 0.4.2 #163

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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
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@3cfe3a4abbb849e10058ce4af15d205b6da42804 # v4.0.0
with:
version: latest
working-directory: 'infra/module-swapper'
args: --timeout=5m