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 3ad717b
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 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,20 @@ jobs:

docs:
runs-on: ubuntu-latest
container: debian
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 +35,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 3ad717b

Please sign in to comment.