Skip to content

Commit

Permalink
added CI for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lostways committed Dec 30, 2023
1 parent 35d90ab commit 3d22b66
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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 .env

- name: Build App
run: make build

- name: Run Tests
run: make test

0 comments on commit 3d22b66

Please sign in to comment.