Sha256: 411f89df42bdc7ea38d64ab90779759730f60201748a3d3d6d8e183a8e48842a

Contents?: true

Size: 695 Bytes

Versions: 11

Compression:

Stored size: 695 Bytes

Contents

name: CI/CD
on: [push]
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Login to GitHub Container Registry
        uses: docker/login-action@v2
        with:
          registry: ghcr.io
          username: ${{ github.repository_owner }}
          password: ${{ secrets.GITHUB_TOKEN }}
      - name: Build & Run Development Container
        uses: devcontainers/ci@v0.2
        with:
          push: always
          imageName: ghcr.io/customink/lamby-devcontainer
          cacheFrom: ghcr.io/customink/lamby-devcontainer
          env: |
            CI
          runCmd: |
            ./bin/setup
            ./bin/test

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
lamby-4.1.0 .github/workflows/test.yml
lamby-4.0.2 .github/workflows/test.yml
lamby-4.0.1 .github/workflows/test.yml
lamby-4.0.0 .github/workflows/test.yml
lamby-4.0.0.pre1 .github/workflows/test.yml
lamby-4.0.0.beta6 .github/workflows/test.yml
lamby-4.0.0.beta5 .github/workflows/test.yml
lamby-4.0.0.beta4 .github/workflows/test.yml
lamby-4.0.0.beta3 .github/workflows/test.yml
lamby-4.0.0.beta2 .github/workflows/test.yml
lamby-4.0.0.beta1 .github/workflows/test.yml