-
Notifications
You must be signed in to change notification settings - Fork 51
72 lines (57 loc) · 1.63 KB
/
testgen.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: Python Testgen
permissions:
contents: read
on:
pull_request:
push:
merge_group:
schedule:
- cron: '0 18 * * *'
env:
PYTHON_VERSION: "3.11"
jobs:
linting:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies
- name: Install Python requirements.
run: pip install -r requirements.txt
- name: flake8 Lint
uses: py-actions/flake8@v2
- name: mypy Typecheck
run: mypy ./tests
- name: Black Format
uses: psf/black@stable
with:
src: "./tests"
testgen:
runs-on: ubuntu-latest
name: Generate Tests
steps:
- name: Check out source repository
uses: actions/checkout@v3
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Set up Python environment
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: 'pip' # caching pip dependencies
- name: Install Python requirements.
run: pip install -r requirements.txt
- name: Generate test files
working-directory: ./tests
# Generate but don't run the test suite - we already do that in the
# other CI tasks that run `cargo test`.
run: python3 generate.py --no-test
- name: Enforce no diff
run: git diff --exit-code