Skip to content

valid tests

valid tests #7

Workflow file for this run

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: install dep
run: sudo apt update && sudo apt install -y upx
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: Test
run: go test -v ./...
- name: Build
run: ./build.sh
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.0
with:
path: build/*