Upgrade pip in Dockerfile #201
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: Unit Testing | |
on: | |
push: | |
branches: '**' | |
pull_request: | |
branches: [ 'main', 'dev' ] | |
jobs: | |
test: | |
name: Run Unit Tests | |
runs-on: [ 'ubuntu-latest' ] | |
env: | |
AGENT_TOOLSDIRECTORY: /home/runner/actions-runner/_work/_tool/ | |
defaults: | |
run: | |
shell: bash -el {0} | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
- name: Checkout LFS files | |
run: git lfs pull | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12.7' | |
cache: 'pip' # caching pip dependencies | |
cache-dependency-path: '**/requirements_full.txt' | |
token: ${{ secrets.QUARK_GH_GITHUB_COM_TOKEN }} | |
- name: Install Dependencies | |
run: pip install -r .settings/requirements_full.txt | |
- name: Run Unit Tests | |
run: python -m unittest discover . > unittest_results.log | |
- name: Upload Test Logs | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: unittest-logs | |
path: unittest_results.log | |