-
Notifications
You must be signed in to change notification settings - Fork 35
97 lines (79 loc) · 2.23 KB
/
go_pkgs.yml
File metadata and controls
97 lines (79 loc) · 2.23 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
name: Go packages CI
on: push
permissions:
contents: read
jobs:
shelper-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./shelper
strategy:
matrix:
go-version: [ '1.21', '1.22', '1.23', '1.24']
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: shelper install dependencies
run: go get .
- name: shelper go test
run: go test .
shelper-format:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./shelper
strategy:
matrix:
go-version: [ '1.21', '1.22', '1.23', '1.24']
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: shelper go formatter
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi
shelper-lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./shelper
strategy:
matrix:
go-version: [ '1.21', '1.22', '1.23', '1.24']
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.1
working-directory: shelper
# TODO(luccab): github package name has to match github URL
# slurmprocessor-tests:
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: ./slurmprocessor
# strategy:
# matrix:
# go-version: [ '1.21', '1.22', '1.23', '1.24']
# steps:
# - uses: actions/checkout@v4
# - name: Setup Go ${{ matrix.go-version }}
# uses: actions/setup-go@v5
# with:
# go-version: ${{ matrix.go-version }}
# - name: slurmprocessor install dependencies
# run: go get .
# - name: slurmprocessor go test
# run: go test .