Skip to content

Commit

Permalink
Add GitHub Actions workflow for testing backend
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelo-schreiber committed May 1, 2024
1 parent dc1968b commit 7bf9e67
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test-backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Testing Backend 🧪
run-name: Test Backend
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- run: docker pull python:3.9-slim
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test

0 comments on commit 7bf9e67

Please sign in to comment.