Skip to content

Commit

Permalink
chore: add ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jordipuigbou committed Nov 16, 2023
1 parent 72f56ef commit 8106045
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:
api:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Build apis
run: make build-apis

- name: Run apis
run: make run-apis

- name: clean apis
run: make clear-apis

crud:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Build crud
run: make build-crud

- name: Run test crud
run: make run-crud-test

- name: Clean crud
run: make clear-crud

0 comments on commit 8106045

Please sign in to comment.