mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-30 07:48:44 +00:00
* Release v0.19.9 * Updating test action * fixing tests * fixing tests * fixing tests * fixing tests * fixing tests * Testing older version of checkout action * Testing older version of checkout action * Fixing permission * Fixing permission * Fixing permission
25 lines
561 B
YAML
25 lines
561 B
YAML
name: tester
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
pull_request:
|
|
branches:
|
|
- "master"
|
|
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:2021.08.31
|
|
steps:
|
|
# user in image needs write access to do anything
|
|
- name: setup
|
|
run: sudo chmod -R 777 $GITHUB_WORKSPACE /github /__w/_temp
|
|
- uses: actions/checkout@v3.0.2
|
|
- run: make test-all
|