Skip to content

changing the mkdir code to execute #174

changing the mkdir code to execute

changing the mkdir code to execute #174

Workflow file for this run

name: Go Test
on: [push]
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go 1.21
uses: actions/setup-go@v1
with:
go-version: 1.21
id: go
- name: Test
run: go test -v ./...