From e733c8aecc2f0f7e3eda5865aef3d12c72d152e6 Mon Sep 17 00:00:00 2001 From: Luctia Date: Sun, 3 Jul 2022 20:26:07 +0200 Subject: [PATCH] Added Action to check for basic mistakes --- .github/workflows/check_running.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/check_running.yml diff --git a/.github/workflows/check_running.yml b/.github/workflows/check_running.yml new file mode 100644 index 0000000..a4a1c1e --- /dev/null +++ b/.github/workflows/check_running.yml @@ -0,0 +1,26 @@ +name: Check running + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +jobs: + run: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: Copy environment file + run: cp .env.sample .env + + - name: Run setup.sh + run: ./setup.sh + + - name: Run docker-compose + run: docker-compose up -d