Skip to content

no way this works

no way this works #6

Workflow file for this run

name: Run CI
on:
push:
pull_request:
types: [opened, reopened]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Environments
run: |
cp .envs/local/.env.example .envs/local/.env
- name: Build App
run: make build
- name: Run App
run: make run
- name: Run Tests
run: make test