Skip to content

15 enhance support the use of ostruncate to clear the corefile #18

15 enhance support the use of ostruncate to clear the corefile

15 enhance support the use of ostruncate to clear the corefile #18

Workflow file for this run

name: Pull Request
on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.5
- name: Install dependencies
run: go mod download
- name: Lint
run: go vet ./...
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21.5
- name: Install dependencies
run: go mod download
- name: Test
run: go test ./...