-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #162 from Open-EO/HansVRP-unit_test_yaml
Create unit_test.yml
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Run Unit Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- '*' # or specific branches you want to include | ||
pull_request: | ||
branches: | ||
- '*' # same here | ||
|
||
jobs: | ||
unit_tests: | ||
name: Run Unit Tests on Multiple Python Versions | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
python-version: [3.9, 3.11, 3.12] | ||
|
||
steps: | ||
- name: Checkout the repository | ||
uses: actions/checkout@v3 # Updated to v3 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} # Use Python version from the matrix | ||
cache: 'pip' | ||
|
||
- name: Install dependencies and pytest | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install pytest | ||
python -m pip install .[dev] | ||
- name: Run Unit Tests | ||
run: | | ||
python -m pytest tests/tests_unit # Ensure the path is correct |