mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-19 01:14:04 -08:00
1e55b55748
Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.2.0 to 3.3.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](537aa1903e...07db5389c9
)
---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
35 lines
867 B
YAML
35 lines
867 B
YAML
on:
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'README.md'
|
|
- 'CONTRIBUTING.md'
|
|
- 'COPYING'
|
|
- 'website/**'
|
|
- '.github/*.md'
|
|
- '.github/FUNDING.yml'
|
|
|
|
name: Validate Code
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
defaults:
|
|
run:
|
|
working-directory: ${{ github.workspace }}/src
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f
|
|
with:
|
|
go-version: 1.19
|
|
- name: Checkout code
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
|
- name: Golang CI
|
|
uses: golangci/golangci-lint-action@07db5389c99593f11ad7b44463c2d4233066a9b1
|
|
with:
|
|
version: latest
|
|
working-directory: src
|
|
- name: Unit Tests
|
|
run: go test -v ./...
|