[DEV-190] Migrate tests from Travis CI to Github Actions

This commit is contained in:
Maxi Redigonda 2022-05-04 09:03:08 -03:00
parent e190710252
commit 83e45f5ab8

12
.github/workflows/run-tests.yml vendored Normal file
View File

@ -0,0 +1,12 @@
name: run-tests
on: [push]
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: cd server && make build
- run: cd server && make run
- run: cd server && make install
- run: cd server && make test
- run: cd tests && make run