-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (43 loc) · 1.38 KB
/
main.yaml
File metadata and controls
53 lines (43 loc) · 1.38 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
# SPDX-FileCopyrightText: Contributors to the Fedora Project
#
# SPDX-License-Identifier: MIT
name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
python-smoketests-ci:
strategy:
fail-fast: false
runs-on: ubuntu-latest
container: fedorapython/fedora-python-tox:latest
steps:
- uses: actions/checkout@v6
- name: Install absolufy and poetry
run: |
python3 -m pip install absolufy-imports poetry
- name: Enforce relative imports in package
run: >
find mirrors_countme -name \*.py -print0
| xargs -0 absolufy-imports --never
- name: Check Poetry lock file consistency
run: >
poetry lock --check
backend-ci:
strategy:
fail-fast: false
runs-on: ubuntu-latest
container: fedorapython/fedora-python-tox:latest
steps:
- uses: actions/checkout@v6
- name: Mark the directory as safe for git
run: git config --global --add safe.directory $PWD
- name: Install RPM dependencies
run: |
dnf -y install coreutils xz gzip
- name: Install base Python dependencies
run: |
python3 -m pip install --upgrade tox
- name: Install English locale files
run: |
dnf install -y glibc-langpack-en
- name: run tests through tox
run: tox -e $(tox -l | grep '^py[0-9]' | paste -sd , -)