Bump certifi from 2023.7.22 to 2024.7.4 #10
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: Python Package Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10.5" | |
- name: Install Tor | |
run: sudo apt install tor | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Stop Tor services #<running> | |
run: sudo service tor stop | |
- name: Test package | |
run: pytest | |
- name: Upload test results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: test-results | |
path: | | |
${{ github.workspace }}/test-report.xml |