mirror of
https://forgejo.merr.is/annika/jwtauth.git
synced 2025-12-11 11:16:32 -05:00
41 lines
848 B
YAML
41 lines
848 B
YAML
on:
|
|
push:
|
|
branches: '**'
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
pull_request:
|
|
branches: '**'
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
|
|
name: Test
|
|
jobs:
|
|
test:
|
|
env:
|
|
GOPATH: ${{ github.workspace }}
|
|
GO111MODULE: off
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
|
|
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.18.x, 1.19.x]
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
|
|
- name: Test
|
|
run: |
|
|
go get -d -t ./...
|
|
go test -v ./...
|