Files
atlantis/.github/workflows/test.yml
nitrocode ad18c02f4e chore(deps): use testing-env:latest (#2966)
* Update config.yml

* Update test.yml

* Update Makefile
2023-01-10 22:17:07 -06:00

34 lines
636 B
YAML

name: tester
on:
push:
branches:
- "main"
paths-ignore:
- 'runatlantis.io/**'
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
branches:
- "main"
paths-ignore:
- 'runatlantis.io/**'
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