Skip to content

fix different issues and names #6

fix different issues and names

fix different issues and names #6

Workflow file for this run

name: Run Distros Framework
on:
push:
permissions:
contents: read
jobs:
build:
name: Build and Lint
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout distros
uses: actions/checkout@v3
- name: Cache Go Modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build Docker image
run: docker build . -q -f scripts/Dockerfile.build -t acceptance-tests
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: golangci-lint
if: success()
uses: golangci/golangci-lint-action@v3
with:
version: v1.53
args: --timeout 5m --issues-exit-code=0