Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,16 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@main

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@main
with:
python-version: '3.11'

- name: Install dependencies
run: |
sudo apt update
sudo apt install libopenmpi-dev
python -m pip install --upgrade pip
python -m pip install flake8 pytest pytest-cov
Expand All @@ -40,7 +41,7 @@ jobs:

- name: Upload coverage to Codecov (optional)
if: success()
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@main
with:
file: ./coverage.xml
flags: unittests
Expand Down
Loading