This repository was archived by the owner on Sep 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
49 lines (46 loc) · 1.53 KB
/
gate.yaml
File metadata and controls
49 lines (46 loc) · 1.53 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
name: "Gating"
on:
push:
branches: [ "main", "*" ]
pull_request:
branches: [ "main" ]
jobs:
test-fedora-latest:
runs-on: "ubuntu-latest"
container:
image: fedora:latest
steps:
- name: Install Dependencies
run: dnf install -y python3-devel python3-setuptools
- name: Checkout
uses: actions/checkout@v4
- name: Install Python Dependencies
run: pip install -r requirements.txt
- name: Run all tests
run: tox
test-fedora-rawhide:
runs-on: "ubuntu-latest"
container:
image: fedora:rawhide
steps:
- name: Install Dependencies
run: dnf install -y python3-devel python3-setuptools
- name: Checkout
uses: actions/checkout@v4
- name: Install Python Dependencies
run: pip install -r requirements.txt
- name: Run all tests
run: tox
test-c10s:
runs-on: "ubuntu-latest"
container:
image: quay.io/centos/centos:stream10-development
steps:
- name: Install Dependencies
run: dnf install -y python3-devel python3-setuptools
- name: Checkout
uses: actions/checkout@v4
- name: Install Python Dependencies
run: pip install -r requirements.txt
- name: Run all tests
run: tox