Skip to content

feat(server): Add clipboard.js to copy upload link #124

feat(server): Add clipboard.js to copy upload link

feat(server): Add clipboard.js to copy upload link #124

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
jobs:
test:
name: Unit tests
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: |
go version
go vet ./...
go test ./...