Skip to content

Improvements

Improvements #80

Workflow file for this run

name: CI
on:
push:
branches: [master, develop]
pull_request:
branches: [master]
permissions:
actions: read
contents: read
statuses: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
GoLinux:
name: Go (Linux)
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19.x', '1.20.x', '1.21.x' , '1.22.x' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Download dependencies
run: make deps
- name: Run tests
run: make test
GoMac:
name: Go (macOS)
runs-on: macos-latest
needs: GoLinux
strategy:
matrix:
go: [ '1.19.x', '1.20.x', '1.21.x' , '1.22.x' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Download dependencies
run: make deps
- name: Run tests
run: make test
Typos:
name: Typos
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check spelling
continue-on-error: true
uses: crate-ci/typos@master