Skip to content

bugfix(plugin): following 9151cf2451d12c55c8324f337a235add8013e33f#r… #17

bugfix(plugin): following 9151cf2451d12c55c8324f337a235add8013e33f#r…

bugfix(plugin): following 9151cf2451d12c55c8324f337a235add8013e33f#r… #17

Workflow file for this run

name: VersionFox CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.21.x' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Display Go version
run: go version
- name: Install dependencies
run: |
go get .
- name: Build with the Go CLI
run: |
go build .
- name: Test with the Go CLI
run: |
go test ./internal