Skip to content

Restructure x3

Restructure x3 #13

Workflow file for this run

name: Feature Build 🏗️
on:
pull_request:
branches:
- main
push:
branches-ignore:
- main
jobs:
test:

Check failure on line 12 in .github/workflows/feature.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/feature.yml

Invalid workflow file

You have an error in your yaml syntax on line 12
name: Unit Tests 🧪
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Changes 📝
uses: dorny/paths-filter@v2
id: changes
with:
filters: |
source:
- Builder.Dockerfile
- name: Set up Docker Buildx 🧰
if: steps.changes.outputs.source == 'true'
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry 🔒
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Image 🐳
if: steps.changes.outputs.source == 'true'
uses: docker/build-push-action@v5
with:
tags: ${{ env.GHCR_BUILDER_IMAGE }}
file: Builder.Dockerfile
- name: Dart Test 🎯
uses: docker://${{ env.GHCR_BUILDER_IMAGE }}
with:
args: make test-dart-ci