Skip to content

upgrade to aws-sdk-go-v2 #28

upgrade to aws-sdk-go-v2

upgrade to aws-sdk-go-v2 #28

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
# Run daily at 2 AM UTC to check for new vulnerabilities
- cron: "0 2 * * *"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
timeout-minutes: 15
strategy:
matrix:
go-version: [1.25.x, 1.24.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: v2.7.2
- name: Build
run: go build -v ./...
- name: Run govulncheck
uses: golang/govulncheck-action@v1
with:
go-version-input: ${{ matrix.go-version }}
- name: Test
run: go test -race ./...
jirabot:
runs-on: ubuntu-latest
defaults:
run:
working-directory: jirabot
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 25.x
cache: yarn
cache-dependency-path: jirabot/yarn.lock
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run jirabot CI
run: yarn ci