Skip to content

updated readme

updated readme #10

Workflow file for this run

name: Python CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
env:
working-directory: "./Path Manipulation/Path Manipulation while File Upload/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
working-directory: ${{ env.working-directory }}
run: |
python -m pip install --upgrade pip
pip install .
# - name: Run tests
# run: |
# pytest