-
Notifications
You must be signed in to change notification settings - Fork 52
34 lines (34 loc) · 790 Bytes
/
ci.yml
File metadata and controls
34 lines (34 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
strategy:
matrix:
go-version: [1.23.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.63
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