This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
Compiled daemon, removed assets and torch dependency #145
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
jobs: | |
test: | |
env: | |
DOCKER_BUILDKIT: 1 | |
COMPOSE_DOCKER_CLI_BUILD: 1 | |
DOCKER_CLI_EXPERIMENTAL: enabled | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create the .env file from example | |
run: cp .env.example .env | |
- name: Build the Stack | |
run: docker-compose build | |
- name: Run APIs Tests | |
run: docker-compose run premd pytest | |
- name: Tear down the Stack | |
run: docker-compose down |