Paramatrized currents tests to run with floats as well. #6
Workflow file for this run
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
name: CI Test GPU | |
on: | |
push: | |
branches: [ main, ] | |
pull_request: | |
branches: [ '*', ] | |
workflow_dispatch: | |
jobs: | |
CI-Test-GPU: | |
runs-on: [self-hosted] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10.13 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10.13' | |
- name: Checkout this Repo | |
uses: actions/checkout@v4 | |
- name: Make CUDA discoverable | |
run: | | |
export CPATH="/usr/include/python3.10:${CPATH}" | |
export CPATH="/home/docker/actions-runner/_work/_tool/Python/3.10.13/x64:${CPATH}" | |
export PATH="/usr/local/cuda-12.2/bin:${PATH}" | |
export LD_LIBRARY_PATH="/usr/local/cuda-12.2/lib64:${LD_LIBRARY_PATH}" | |
echo "$PATH" && echo "$LD_LIBRARY_PATH" && nvcc --version && nvidia-smi | |
ls /usr/include/python3.10 | |
ls /home/docker/actions-runner/_work/_tool/Python/3.10.13/x64 | |
- name: Install dependencies | |
run: | | |
pip install .[tests] | |
- name: Test with pytest | |
run: | | |
pytest |& tee coverage.txt | |
PYTEST_EXIT_CODE=${PIPESTATUS[0]} | |
if [ "$PYTEST_EXIT_CODE" -ne 0 ]; then | |
echo "pytest failed with exit code $PYTEST_EXIT_CODE" | |
exit 1 | |
else | |
echo "pytest passed with exit code 0" | |
fi | |
- name: Run update-badges script | |
run: | | |
python update-badges.py | |
- name: Update badges and commit README.md | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
file_pattern: README.md | |
commit_message: "Automatic badge update" |