Skip to content

feat: add option to define flag and permissions of the file #40

feat: add option to define flag and permissions of the file

feat: add option to define flag and permissions of the file #40

Workflow file for this run

name: Tests and Build
on:
push:
branches:
- main
- master
pull_request:
permissions:
contents: read
jobs:
tests:
name: Tests
strategy:
matrix:
go-version: [ stable, oldstable ]
os: [ubuntu-latest, macos-latest, windows-latest]
env:
CGO_ENABLED: 1
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check and get dependencies
run: |
go mod tidy
git diff --exit-code go.mod
git diff --exit-code go.sum
- name: Test
run: go test -v -race ./...
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: stable
- name: compile for all supported GOOS/GOARCH
run: ./build.sh