Skip to content

Update robotframework from 7.0 to 7.1 #298

Update robotframework from 7.0 to 7.1

Update robotframework from 7.0 to 7.1 #298

Workflow file for this run

name: pypi
on:
pull_request:
branches:
- "*"
push:
branches:
- "*"
jobs:
test-on-linux:
name: build / Py${{ matrix.python-version }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: [3.11]
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
pip install -U pip
pip install -r devel.txt
- name: Verify package build
run: |
make build