mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-08-03 22:38:45 +00:00
* Bump github.com/zclconf/go-cty@v1.12.1 * Bump github.com/zclconf/go-cty@v1.11.1 * Bump github.com/zclconf/go-cty@v1.12.1 * Bump testing-env to latest * Set conftest to 0.35.0 * conftest to 0.45.0, run docker tests locally * set gha test.yml to latest testing-env image * Update Makefile target descs, rm sudo * Use testing-env:2022.11.17 * Add sudo back in for gha workflow * Set conftest to 0.35.0 * test gha: rm setup * Rename "Version" to "Conftest" for version regex * Use cases and language import * Use io instead of ioutil
22 lines
413 B
YAML
22 lines
413 B
YAML
name: tester
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
pull_request:
|
|
branches:
|
|
- "main"
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
name: runner / gotest
|
|
runs-on: ubuntu-22.04
|
|
container: ghcr.io/runatlantis/testing-env:2022.11.17
|
|
steps:
|
|
- uses: actions/checkout@v3.0.2
|
|
- run: make test-all
|