Skip to content

atlasexec: context param to migrate push (#12) #39

atlasexec: context param to migrate push (#12)

atlasexec: context param to migrate push (#12) #39

Workflow file for this run

name: Go Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Run Go linters
uses: golangci/golangci-lint-action@v3
with:
args: --verbose --timeout 15m
skip-pkg-cache: true
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- run: |
curl -sSf 'https://atlasgo.sh?test=1' | env ATLAS_DEBUG=true sh
- name: Run tests
run: go test -race ./...