Skip to content

Implemente basic new ui #10

Implemente basic new ui

Implemente basic new ui #10

Workflow file for this run

name: on push
on:
push:
branches:
- '**'
tags-ignore:
- '*.*'
paths-ignore:
- README.md
- .github/*
- docs/*
env:
GIT_USERNAME: '${{ github.actor }}'
GIT_EMAIL: [email protected]
PA_TOKEN: '${{ secrets.GHA_PAT }}'
jobs:
lint:
permissions:
contents: read
id-token: write
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
go-version: 1.21.5
cache: false
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
install-mode: goinstall
skip-pkg-cache: true
test:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.21.5
- name: Test
run: go test ./...