Skip to content

Commit

Permalink
Yet another way to initialise python env
Browse files Browse the repository at this point in the history
  • Loading branch information
Lekcyjna committed Oct 14, 2023
1 parent 662322c commit d3dc874
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,14 @@ jobs:
- name: Install dependencies
run: |
python3 -m venv venv
source venv/bin/activate
. venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements-dev.txt
- name: Generate Verilog
run: PYTHONHASHSEED=0 ./scripts/gen_verilog.py --verbose --config full
run: |
. venv/bin/activate
PYTHONHASHSEED=0 ./scripts/gen_verilog.py --verbose --config full
- uses: actions/download-artifact@v3
with:
Expand All @@ -63,6 +65,7 @@ jobs:

- name: Run tests
run: |
. venv/bin/activate
scripts/run_tests.py -a regression
- name: Test Report
Expand Down

0 comments on commit d3dc874

Please sign in to comment.