From 4e3a34b7f2c2b6210e69ae0ae6640136af6ecf0b Mon Sep 17 00:00:00 2001 From: Daniel Emery Date: Tue, 27 Feb 2024 10:47:32 +0100 Subject: [PATCH] Add rudimentary ci job --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0584fe6 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: CI + +on: + pull_request: + branches: ["main"] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Build the Docker image + run: docker build . -t action-deployment-poc:$(date +%s)