From 42e2abdb3417a4bae5175b282ea8489a3bd369c0 Mon Sep 17 00:00:00 2001 From: kosyachniy Date: Sun, 14 Apr 2024 23:25:29 +0300 Subject: [PATCH] dev branch --- .github/workflows/dev.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dev.yml diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml new file mode 100644 index 0000000..320f03c --- /dev/null +++ b/.github/workflows/dev.yml @@ -0,0 +1,19 @@ +on: + push: + branches: [ "dev" ] + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setting up environment variables + run: | + cp base.env .env + echo "MODE=TEST" >> .env + echo "DATA_PATH=./data" >> .env + + - name: Running tests inside the container + run: make run-test