-
-
Notifications
You must be signed in to change notification settings - Fork 888
52 lines (42 loc) · 1.44 KB
/
jira_server_ci.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
name: server
on:
workflow_call:
workflow_dispatch:
jobs:
test:
name: py${{ matrix.python-version }}-jira${{ matrix.jira-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
jira-version: [8.17.1]
steps:
- uses: actions/checkout@v4
- name: Start Jira docker instance
run: docker run -dit -p 2990:2990 --name jira addono/jira-software-standalone --version ${{ matrix.jira-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install Dependencies
run: |
sudo apt-get update; sudo apt-get install gcc libkrb5-dev
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions
- name: Lint with tox
if: ${{ 'Skipped as pre-commit GHA also running'== 'true' }}
run: tox -e lint
- name: Test with tox
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
name: ${{ runner.os }}-${{ matrix.python-version }}
- name: Run tox packaging
run: tox -e packaging
- name: Make docs
if: ${{ 'Skipped as readthedocs GHA also running'== 'true' }}
run: tox -e docs