Skip to content

Test against the latest versions of Go (#323) #2

Test against the latest versions of Go (#323)

Test against the latest versions of Go (#323) #2

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: Go Lint Standard
uses: golangci/golangci-lint-action@v3
with:
version: v1.55
args: "--out-${NO_FUTURE}format colored-line-number --timeout=15m"
- run: go vet ./...
- run: go test ./...
# Copied from .travis.yml but never migrated to github actions
# - language: node_js
# node_js: 10
# script:
# - cd jirabot
# - yarn
# - yarn ci