Refs #20108: Clarify Fast DDS Discovery Server Tutorial for Windows s… #132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.8 | |
- name: Install dependencies with pip | |
run: | | |
pip install --no-warn-script-location --user --upgrade -r requirements.txt | |
- run: make html | |
- run: make test |