Skip to content

Changed line has point algorithm to vector, x2 performance #9

Changed line has point algorithm to vector, x2 performance

Changed line has point algorithm to vector, x2 performance #9

Workflow file for this run

name: main
on: [ push ]
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: install dependencies
run: |
go mod download -x
- name: tests with coverage
run: go test ./... -coverprofile=coverage.out
- name: codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}