From 7b704072769c364ded03a5864f012d59711933bf Mon Sep 17 00:00:00 2001 From: Pablo Brasero Date: Wed, 1 Oct 2025 15:52:37 +0100 Subject: [PATCH] CI action for devcontainer --- .github/workflows/devcontainer.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/devcontainer.yml diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml new file mode 100644 index 000000000..de0d1f6e6 --- /dev/null +++ b/.github/workflows/devcontainer.yml @@ -0,0 +1,21 @@ +name: devcontainer + +on: + - push + - pull_request + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} + cancel-in-progress: true + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout (GitHub) + uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + + - name: Build and run dev container task + uses: devcontainers/ci@8bf61b26e9c3a98f69cb6ce2f88d24ff59b785c6 # v0.3.1900000417 + with: + runCmd: bin/rails test:all -- 2.39.5