Skip to content

Exercise 5

Exercise 5 #5

Workflow file for this run

name: Run Test
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sqlalchemy pandas numpy
- name: Make tests.sh executable
run: chmod +x ./project/test.sh
- name: Test with test-files
run: |
./project/test.sh