Skip to content

Commit

Permalink
feat: added github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
black-redoc committed May 18, 2024
1 parent 64b7bf2 commit aeaa77b
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Build and test app

on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
lint-fastapi:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install requirements
run: |
cd backend
pip install -r requirements.txt
- name: Linter
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
test-fastapi:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install requirements
run: |
pip install -r backend/requirements.txt
- name: Test with tox
run: |
export ENVIRONMENT=test
cd backend
tox
17 changes: 17 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Deploy

on:
pull_request:
branches: ["master"]
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: akhileshns/[email protected] # This is the action
with:
heroku_api_key: ${{ secrets.HEROKU_API_KEY }}
heroku_app_name: ${{ secrets.HEROKU_APP_NAME }}
heroku_email: ${{ secrets.HEROKU_EMAIL }}
Empty file added .github/workflows/touch
Empty file.

0 comments on commit aeaa77b

Please sign in to comment.