Skip to content

added team/teams data resource #108

added team/teams data resource

added team/teams data resource #108

Workflow file for this run

name: lint
on:
pull_request:
branches:
- main
types: [opened, synchronize]
env:
GO_VERSION: "1.22"
GOLANGCI_VERSION: "v1.57.2"
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
cache: false
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_VERSION }}
skip-cache: true
skip-pkg-cache: true
skip-build-cache: true
- name: Run pre-commit
uses: pre-commit/[email protected]