Skip to content

Merge pull request #169 from rails-lambda/ProactiveInit #83

Merge pull request #169 from rails-lambda/ProactiveInit

Merge pull request #169 from rails-lambda/ProactiveInit #83

Workflow file for this run

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/[email protected]
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/[email protected]
with:
push: never
cacheFrom: ghcr.io/rails-lambda/lamby-devcontainer
env: |
CI
runCmd: |
./bin/setup
./bin/test