Skip to content

WIP first draft to list shows of new entries on waiting list. finally it should be sent to e.g. slack #98

WIP first draft to list shows of new entries on waiting list. finally it should be sent to e.g. slack

WIP first draft to list shows of new entries on waiting list. finally it should be sent to e.g. slack #98

Workflow file for this run

name: Apple Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./apple
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pytest
python -m pip install -r requirements.txt
- name: Run tests
run: make test