Skip to content

version bump

version bump #46

Workflow file for this run

name: Testing
on:
push:
branches: [ "master", "develop" ]
paths-ignore:
- '**.md'
- '**.sh'
- '**.yml'
- '**.yaml'
pull_request:
branches: [ "master", "develop" ]
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
- name: Vet
run: go vet ./...
shell: bash
- name: Docker Testing
run: docker build -t pmon3 .
build:
name: Build
needs: test
strategy:
matrix:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Build amd64
run: |
GOARCH=amd64 go build -v ./...
shell: bash
- name: Build 386
run: |
GOARCH=386 go build -v ./...
shell: bash
- name: Build arm64
run: |
GOARCH=arm64 go build -v ./...
shell: bash
- name: Build arm
run: |
GOARCH=arm go build -v ./...
shell: bash
- name: Finish
run: |
echo ":rocket: Build complete!" >> $GITHUB_STEP_SUMMARY