Skip to content

Commit

Permalink
Create test-feature.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr committed Aug 16, 2023
1 parent 1ade30e commit 8e431c0
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/test-feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Test feature
on:
push:
branches: "main"
paths-ignore:
- .gitignore
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test-feature.yml"
pull_request:
paths-ignore:
- .gitignore
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test-feature.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-feature:
strategy:
fail-fast: false
matrix:
include:
- image: mcr.microsoft.com/devcontainers/base:ubuntu
options: '{ "version": "13" }'
- image: debian:bookworm-slim
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install -g @devcontainers/cli
- run: bash test.sh "$IMAGE" "$OPTIONS"
env:
IMAGE: ${{ matrix.image }}
OPTIONS: ${{ matrix.options }}

0 comments on commit 8e431c0

Please sign in to comment.