Skip to content

Improving the main README #11

Improving the main README

Improving the main README #11

Workflow file for this run

on:
pull_request:
push:
defaults:
run:
working-directory: go
jobs:
test:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v4
name: Checkout code
- name: Setup path
run: |
echo "GOPATH=$GITHUB_WORKSPACE/go" >> "$GITHUB_ENV"
echo "$GITHUB_WORKSPACE/go/bin" >> "$GITHUB_PATH"
- name: Install go
with:
go-version-file: go/go.sum
uses: actions/setup-go@v5
- run: |
go mod tidy
go get -t -v github.com/avito-tech/go-mutesting/...
name: Install dependencies
- run: go test ./...
name: Run tests
- run: go-mutesting ./...
name: Run mutation testing tool