mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-30 03:38:15 +00:00
Refs: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#example-using-a-fallback-value Signed-off-by: Rui Chen <rui@chenrui.dev>
20 lines
480 B
YAML
20 lines
480 B
YAML
name: tester
|
|
|
|
on: [push]
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
name: runner / gotest
|
|
runs-on: ubuntu-latest
|
|
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@v2
|
|
- run: make test-all
|