Skip to content

docs: Update README.md #50

docs: Update README.md

docs: Update README.md #50

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 2
- uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: Run Test and Coverage
run: go test ./vector2/ ./vector3/ -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload Coverage to Codecov
run: bash <(curl -s https://codecov.io/bash)