Skip to content

🆙 bump go.mod version #12

🆙 bump go.mod version

🆙 bump go.mod version #12

Workflow file for this run

# Copyright (c) 2023, Serhat Şevki Dinçer.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
name: QA
on:
push:
branches: [ main, dev ]
permissions:
contents: read
env:
GOAMD64: v2
jobs:
Tests:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
go: [ oldstable, stable ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Run Tests
run: go test -timeout 5m -v
Analysis:
needs: Tests
permissions:
actions: read
security-events: write
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Initialize
uses: github/codeql-action/init@v3
with:
languages: go
- name: Analyze
uses: github/codeql-action/analyze@v3