Skip to content

bank_app 1.0.4 refactor (#7) #62

bank_app 1.0.4 refactor (#7)

bank_app 1.0.4 refactor (#7) #62

Workflow file for this run

name: Python 3.11 CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
run: python -m unittest tests/test_bank_app.py