Skip to content

Commit

Permalink
Update tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdodson authored Dec 8, 2023
1 parent 87b5976 commit 1f4aea6
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1 +1,43 @@
name: Django Tests

on:
push:
branches:
- main
- tidyup
pull_request:
branches:
- main
- tidyup

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
build:
needs: install
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.11

- name: Install Dependencies
run: |
cd ScheduleBuilder
pip install -r requirements.txt
- name: Server Start
env:
CAL_ID: c_6ed17073345c64d5b392f5a8ef7b4a62938f12c8fc5fecfa4b7256ef88acad28@group.calendar.google.com
run: |
cd ScheduleBuilder
python manage.py ScheduleBuilder/google_calendar/test.py

0 comments on commit 1f4aea6

Please sign in to comment.