Skip to content

Commit

Permalink
Created Workflow on checkout main
Browse files Browse the repository at this point in the history
  • Loading branch information
AtmegaBuzz committed Nov 5, 2022
1 parent 5cef90e commit b0cf951
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ReadIt Backend

on:
push:
branches: [ main ]

jobs:
deploy:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.10]
steps:
- uses: actions/checkout@main
- name: Initialize Python 3.10
uses: actions/setup-python@v1
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
python server.py

0 comments on commit b0cf951

Please sign in to comment.