Skip to content

Implement tortoisectl stop command (#400) #596

Implement tortoisectl stop command (#400)

Implement tortoisectl stop command (#400) #596

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
paths-ignore:
- 'docs/**'
- 'config/**'
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v3.5.0
with:
go-version: "1.21"
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Restore cache
uses: actions/cache@v3.0.10
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Get dependencies
run: make dependencies
- name: Build
run: make build
- name: Test
run: make test
- name: Lint
run: make lint