Sha256: fb353081a9c3dbfa22e83856c367cd5415ecbf3616a6e6d02b7374cd09c47ccd

Contents?: true

Size: 905 Bytes

Versions: 15

Compression:

Stored size: 905 Bytes

Contents

name: CI/CD
on: [push]
jobs:
  image:
    name: Image
    runs-on: ubuntu-20.04
    steps:
      - uses: actions/checkout@v3
      - uses: docker/login-action@v2
        with:
          registry: ghcr.io
          username: ${{ github.repository_owner }}
          password: ${{ secrets.GITHUB_TOKEN }}
      - uses: devcontainers/ci@v0.3
        with:
          push: always
          imageName: ghcr.io/rails-lambda/lamby-devcontainer
          cacheFrom: ghcr.io/rails-lambda/lamby-devcontainer
          runCmd: echo DONE!
  test:
    runs-on: ubuntu-20.04
    needs: image
    steps:
      - name: Checkout
        uses: actions/checkout@v3
      - name: Setup & Test
        uses: devcontainers/ci@v0.3
        with:
          push: never
          cacheFrom: ghcr.io/rails-lambda/lamby-devcontainer
          env: |
            CI
          runCmd: |
            ./bin/setup
            ./bin/test

Version data entries

15 entries across 15 versions & 2 rubygems

Version Path
lamby-6.0.1 .github/workflows/test.yml
lamby-6.0.0 .github/workflows/test.yml
lamby-5.2.2 .github/workflows/test.yml
lamby-5.2.1 .github/workflows/test.yml
lamby_updated-5.2.4 .github/workflows/test.yml
lamby_updated-5.2.2 .github/workflows/test.yml
lamby_updated-5.2.1 .github/workflows/test.yml
lamby-5.2.0 .github/workflows/test.yml
lamby-5.1.0 .github/workflows/test.yml
lamby-5.0.0 .github/workflows/test.yml
lamby-4.3.3 .github/workflows/test.yml
lamby-4.3.0 .github/workflows/test.yml
lamby-4.2.1 .github/workflows/test.yml
lamby-4.2.0 .github/workflows/test.yml
lamby-4.1.1 .github/workflows/test.yml