Skip to content

Refactor Code Base to Remove Getters and Setters #2

Refactor Code Base to Remove Getters and Setters

Refactor Code Base to Remove Getters and Setters #2

Workflow file for this run

name: Sample Application CI
on: [push, pull_request]
env:
PYTHON_VERSION: "3.12"
jobs:
tests:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macOS-latest ]
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: "pip"
- name: Install dependencies
working-directory: ./revamped_application
run: pip install -r requirements.txt
- name: Run tests
working-directory: ./revamped_application
run: python test_runner.py
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.0.1
with:
files: ./revamped_application/coverage.xml
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false