-
Notifications
You must be signed in to change notification settings - Fork 0
58 lines (51 loc) · 1.17 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Test
concurrency:
group: ${{ github.ref }}
on:
push:
branches:
- '*'
workflow_dispatch:
inputs:
do-it:
description: 'shall we do it'
required: false
type: boolean
default: false
skip_test:
description: 'skip tests'
required: false
type: boolean
default: false
jobs:
test:
runs-on: ubuntu-latest
if: inputs.skip_test != true
strategy:
fail-fast: false
matrix:
k: [ flaky1, flaky2]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- run: pip install pytest
# - run: pytest -k ${{ matrix.k }}'
- run: sleep 10
after:
runs-on: ubuntu-latest
needs: test
steps:
- run: echo woop woop
tag:
runs-on: ubuntu-latest
if: inputs.do-it || github.ref == 'refs/heads/master'
steps:
- name: Checkout code
uses: actions/checkout@v2
- run: echo ${{ inputs.do-it }}
- name: tag
env:
TAG: gha-ci-${{ github.run_number }}-${{ github.run_attempt }}
run: git tag "$TAG" && git push origin "$TAG"