diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..827176f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build CI + +on: + push: + branches: [ "main", "gh-actions" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Create build directory. + run: mkdir build + - name: Build + run: docker-compose build && docker-compose up \ No newline at end of file