Skip to content

Merge pull request #42 from Shopify/log-deleting-path #1

Merge pull request #42 from Shopify/log-deleting-path

Merge pull request #42 from Shopify/log-deleting-path #1

Workflow file for this run

name: unittest
on: [ push, pull_request ]
jobs:
unittest:
name: unittest
strategy:
matrix:
zk-version: [ 3.6.2 ]
go-version: [ 1.18.x, 1.19.x, 1.20.x ]
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: 14
- name: Checkout code
uses: actions/checkout@v1
- name: Test code
run: make test ZK_VERSION=${{ matrix.zk-version }}
- name: Upload code coverage
uses: codecov/codecov-action@v1
with:
file: ./profile.cov