Skip to content

daily installation tests #1272

daily installation tests

daily installation tests #1272

Workflow file for this run

name: daily installation tests
on:
schedule:
- cron: '0 6 * * *'
push:
branches:
- master
paths:
- '.github/workflows/pip.yaml'
pull_request:
branches:
- master
paths:
- '.github/workflows/pip.yaml'
jobs:
install_and_check:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: [3.7, 3.9.13, 3.10.6] #dropped: 3.8
pip-version: [21.3.1, 22.1.2, 23.0.1] #dropped: 20.3.4
# test the latest template on macos and windows, and other pip versions and pythons on ubuntu for speed
# adding macos and windows to the matrix adds a bunch of running and delay because of mac and windows
# runners being slower to allocate
include:
- os: macos-latest
python-version: "3.9.13"
pip-version: "22.1.2"
- os: windows-latest
python-version: "3.9.13"
pip-version: "22.1.2"
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set pip version
run: python -m pip install --force-reinstall pip==${{matrix.pip-version}} wheel
- name: install rpafw
run: |
python -m pip install rpaframework rpaframework-recognition robotframework-browser rpaframework-aws rpaframework-google rpaframework-assistant rpaframework-openai rpaframework-recognition rpaframework-windows
- name: test install is correct
run: |
python -m pip check
python -c "import RPA"
# TODO: run whole test suite here
- name: create pip freeze file
run: |
# show freeze file in CI log
python -m pip freeze
python -m pip freeze > requirements.txt
- name: check freeze file
run: |
python -m pip install pip-audit==2.4.14
python -m pip_audit --no-deps -r requirements.txt
# Only run scans for latest template version from https://github.com/robocorp/template-standard/blob/master/conda.yaml
if: ${{ matrix.python-version == '3.9.13' && matrix.pip-version == '22.1.2' }}
- uses: actions/upload-artifact@v3
if: success() || failure()
with:
name: pip_freeze_${{ matrix.python-version }}_${{ matrix.pip-version }}.txt
path: requirements.txt