Skip to content

Merge pull request #94 from Cloud-Code-AI/93-bug-report-storage-path-… #187

Merge pull request #94 from Cloud-Code-AI/93-bug-report-storage-path-…

Merge pull request #94 from Cloud-Code-AI/93-bug-report-storage-path-… #187

Workflow file for this run

name: Go Build & Test
on:
push:
branches: ["*"]
pull_request:
branches: ['*']
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.18' # Use the version of Go in your project
- name: Check out code
uses: actions/checkout@v2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...