Skip to content

Add Keywords

Add Keywords #28

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Environment Variables
run: echo '${{ secrets.ENV_FILE }}' > .env
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: bash scripts/install.sh
- name: Test Project
run: bash scripts/test.sh