Skip to content

Exercise 4 Final version #20

Exercise 4 Final version

Exercise 4 Final version #20

Workflow file for this run

name: CI
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '12'
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install Python dependencies
run: pip install -r ./project/requirements.txt
- name: Make tests.sh executable
run: chmod +x ./project/tests.sh
- name: Run tests
run: ./project/tests.sh