Skip to content

project work 7 completed #3

project work 7 completed

project work 7 completed #3

Workflow file for this run

name: Project CI
on:
push:
branches:
- main
paths:
- project/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install requirements
run: |
cd project
pip install -r requirements.txt
- name: Run tests
run: |
chmod +x project/tests.sh
cd project
./tests.sh