Create workflow for testing for the ruby feature #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test ruby feature | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Test ruby feature | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout (GitHub) | |
uses: actions/checkout@v3 | |
- uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build devcontainer with feature | |
uses: devcontainers/[email protected] | |
with: | |
imageName: ghcr.io/rails/devcontainer/test-ruby-feature | |
cacheFrom: ghcr.io/rails/devcontainer/test-ruby-feature | |
subFolder: .github | |
refFilterForPush: refs/heads/main | |
runCmd: ruby -v || ( echo "Ruby is not installed."; exit 1 ) |