-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (38 loc) · 1.07 KB
/
on-push.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
name: CI
on:
pull_request:
branches: [ main ]
schedule:
- cron: '15 10 * * *'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.12.2]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} with Robot Framework ${{ matrix.rf-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install uv
uv pip install -r requirements-dev.txt --python ${{ matrix.python-version }} --system
uv pip install robotframework-browser --python ${{ matrix.python-version }} --system
- name: Lint files
run: |
rfbrowser init chromium
inv lint
- name: Run unit tests
run: inv utest
- name: Run acceptance tests
run: |
inv atest
- uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: Test_results_${{ matrix.python-version }}
path: atest/output