Skip to content

added support for scoped packages #6

added support for scoped packages

added support for scoped packages #6

Workflow file for this run

name: Go Build and Test
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches:
- main
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Update
run: |
./update.sh
- name: Build
run: |
./buildall.sh
- name: Test
run: |
./test.sh