Skip to content

Commit

Permalink
Load device modules
Browse files Browse the repository at this point in the history
  • Loading branch information
jmichalski-ant committed Jan 25, 2024
1 parent 3789f12 commit a51e040
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Generate and publish docs

on:
push:
branches:
- main
# branches:
# - main
pull_request:
workflow_dispatch:
schedule:
Expand All @@ -13,20 +13,21 @@ jobs:

docs:
runs-on: ubuntu-latest
container: debian
env:
PATH: /github/home/.local/bin
steps:

- name: Get repository
uses: actions/checkout@v3

- uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install protoplaster with pip
run: |
pip install .
apt update -y
apt install -y python3 python3-pip pipx git
pipx install .
- name: Install tuttest
run: |
pip install git+https://github.com/antmicro/tuttest
pipx install git+https://github.com/antmicro/tuttest
- name: Generate docs from yml
run: |
Expand All @@ -35,6 +36,9 @@ jobs:
- name: Generate test report from yml
run: |
# sudo modprobe i2c-stub chip_addr=0x3C
modprobe vivid
# sudo modprobe gpio-mockup gpio_mockup_ranges=0,32
protoplaster -t example.yml --csv report.csv
protoplaster-test-report report.csv -t md
Expand Down

0 comments on commit a51e040

Please sign in to comment.