Skip to content

updated to names around use case of planning a workshop #71

updated to names around use case of planning a workshop

updated to names around use case of planning a workshop #71

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Run Course Attendance Service Tests
on: [push,pull_request]
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: |
cd course_attendance_service
python -m pip install --upgrade pip
pip install pytest
pip install -r requirements.txt
- name: Test with pytest
env:
ACCOUNT_ID: ${{ secrets.ZOOM_ACCOUNT_ID }}
CLIENT_ID: ${{ secrets.ZOOM_CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.ZOOM_CLIENT_SECRET }}
USER_ID: ${{ secrets.ZOOM_USER_ID }}
run: |
pytest