Update README #12
This file contains hidden or 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 CI | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
working-directory-fileupload: "./Path Manipulation/Path Manipulation while File Upload/python" | |
working-directory-fileread: "./Path Manipulation/Path Manipulation while File Read/python" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.9' | |
- name: Install Dependencies for Path Manipulation while File Upload | |
working-directory: ${{ env.working-directory-fileupload }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
- name: Install Dependencies for Path Manipulation while File Read | |
working-directory: ${{ env.working-directory-fileread }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
# - name: Run tests | |
# run: | | |
# pytest |