mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-01 19:38:43 +00:00
* fix: vuepress-next breaking change See https://github.com/vuepress/vuepress-next/issues/1195. Other fixes: * fix: website js tests triggering properly * chore: clean up test workflows * fix: yarn packages * fix: renovate config & medium rate limit * fix: don't need to require docker build for JS code * fix: muffet config * fix: properly name website test --------- Co-authored-by: PePe Amengual <jose.amengual@gmail.com>
38 lines
730 B
YAML
38 lines
730 B
YAML
name: tester
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
paths:
|
|
- '**.go'
|
|
- 'go.*'
|
|
- '.github/workflows/test.yml'
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- synchronize
|
|
- ready_for_review
|
|
branches:
|
|
- "main"
|
|
paths:
|
|
- '**.go'
|
|
- 'go.*'
|
|
- '.github/workflows/test.yml'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
if: github.event.pull_request.draft == false
|
|
name: runner / gotest
|
|
runs-on: ubuntu-22.04
|
|
container: ghcr.io/runatlantis/testing-env:latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- run: make test-all
|
|
- run: make check-fmt
|