Skip to content

Get CI working - and publishing the feature with version based on git tag #44

Get CI working - and publishing the feature with version based on git tag

Get CI working - and publishing the feature with version based on git tag #44

Workflow file for this run

name: "CI - Test Features"
on:
push:
pull_request:
jobs:
test-autogenerated:
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
features:
- bash-config
baseImage:
- debian:latest
- ubuntu:latest
steps:
- uses: actions/checkout@v4
- name: "Install latest devcontainer CLI"
run: |
npm install -g @devcontainers/cli
mkdir -p ~/.config/devcontainer_rc
- name: "Generating tests for '${{ matrix.features }}' against '${{ matrix.baseImage }}'"
run: devcontainer features test --skip-scenarios -f ${{ matrix.features }} -i ${{ matrix.baseImage }} .