Split hello package into syncing and pairing packages #110
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
branches: | |
- master | |
name: Unit | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Run linters | |
uses: PiwikPRO/actions/go/lint@master | |
with: | |
go-version: "1.22.x" | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Run unit tests | |
uses: PiwikPRO/actions/go/test@master | |
with: | |
go-version: "1.22.x" |