8000 change struct to make it similar to before · kelindar/tile@cf69df0 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

change struct to make it similar to before #54

change struct to make it similar to before

change struct to make it similar to before #54

Workflow file for this run

name: Test
on: [push, pull_request]
env:
GITHUB_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
GO111MODULE: "on"
jobs:
test:
name: Test with Coverage
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.23
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: |
go mod download
- name: Run Unit Tests
run: |
go test -race -covermode atomic -coverprofile=profile.cov ./...
- name: Upload Coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
0