Skip to content

Revert "Run containers with the same UID/GID as the user that is runn… #174

Revert "Run containers with the same UID/GID as the user that is runn…

Revert "Run containers with the same UID/GID as the user that is runn… #174

Workflow file for this run

name: Development
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Build
run: go build -v ./...
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Test
run: go test -v ./...
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Run golangci-lint
uses: golangci/[email protected]
with:
args: --timeout 5m