oh-my-posh/.github/workflows/code.yml

35 lines
869 B
YAML
Raw Normal View History

2019-03-13 04:14:30 -07:00
on:
pull_request:
paths-ignore:
- 'README.md'
2020-10-06 10:21:00 -07:00
- 'CONTRIBUTING.md'
- 'COPYING'
2022-05-12 22:54:59 -07:00
- 'website/**'
2020-10-06 10:43:18 -07:00
- '.github/*.md'
- '.github/FUNDING.yml'
2019-03-13 04:14:30 -07:00
name: Validate Code
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
2020-12-25 11:02:25 -08:00
defaults:
run:
working-directory: ${{ github.workspace }}/src
2019-03-13 04:14:30 -07:00
steps:
- name: Install Go
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9
2019-03-13 04:14:30 -07:00
with:
go-version: 1.20.2
2019-03-13 04:14:30 -07:00
- name: Checkout code
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
2019-03-13 04:14:30 -07:00
- name: Golang CI
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5
2019-03-13 04:14:30 -07:00
with:
2021-03-27 09:10:35 -07:00
version: latest
2020-12-25 11:02:25 -08:00
working-directory: src
2019-03-13 04:14:30 -07:00
- name: Unit Tests
2022-02-01 05:38:25 -08:00
run: go test -v ./...