Skip to content

ci: replace --rm-dist with --clean #35

ci: replace --rm-dist with --clean

ci: replace --rm-dist with --clean #35

Workflow file for this run

name: test
on:
push:
paths-ignore:
- "**.md"
- "LICENSE"
- "didder.1"
pull_request:
paths-ignore:
- "**.md"
- "LICENSE"
- "didder.1"
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ["1.20", "1.21"]
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Test
run: make