-
Notifications
You must be signed in to change notification settings - Fork 1.1k
94 lines (94 loc) · 2.93 KB
/
10-daily-unit-lint.yml
File metadata and controls
94 lines (94 loc) · 2.93 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: "Daily: Unit & Lint"
on:
schedule:
- cron: '3 14 * * *'
concurrency:
group: 'ci-${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: false
jobs:
hypothesis:
name: "Fuzz: jsonschema"
if: github.repository == 'canonical/cloud-init'
runs-on: ubuntu-latest
env:
FORCE_COLOR: 1
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install dependencies
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get -qy update
sudo apt-get -qy install tox
- name: Run fuzztest
env:
PYTEST_ADDOPTS: -v
HYPOTHESIS_PROFILE: ci
run: tox -e hypothesis-slow
devel_tests:
name: "Tip: Python"
if: github.repository == 'canonical/cloud-init'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install Latest Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
# select latest version here:
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
python-version: 3.15.0-alpha.3
check-latest: true
- name: Install tox
run: pip install tox
- name: Run unittest
run: tox -e py3 -- --color=yes
format_tip:
name: "Tip: Lint"
if: github.repository == 'canonical/cloud-init'
runs-on: ubuntu-latest
env:
FORCE_COLOR: 1
strategy:
fail-fast: false
matrix:
env: [tip-ruff, tip-mypy, tip-pylint, tip-black, tip-isort, py3-fast]
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install dependencies
run: |
sudo apt-get -qy update
sudo apt-get -qy install tox
- name: Run Linters tip
env:
TOXENV: ${{ matrix.env }}
run: tox
macos:
name: Python ${{matrix.python-version}} ${{ matrix.slug }}
if: github.repository == 'canonical/cloud-init'
runs-on: macos-latest
strategy:
matrix:
python-version: ["3.13"]
toxenv: [py3]
slug: [""]
experimental: [false]
check-latest: [false]
continue-on-error: [false]
continue-on-error: ${{ matrix.experimental }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Install Python ${{matrix.python-version}}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{matrix.python-version}}
check-latest: ${{matrix.check-latest}}
- name: Install tox
run: pip install tox
- name: Run unittest
env:
TMPDIR: '/tmp/'
run: tox -e ${{ matrix.toxenv }} -- --color=yes