Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(passkit_ui): add workflow #26

Merged
merged 13 commits into from
Jun 26, 2024
20 changes: 20 additions & 0 deletions .github/workflows/passkit_ui.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: passkit_ui

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
paths:
- "passkit_ui/**"
- ".github/workflows/passkit_ui.yaml"
branches:
- master

jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/flutter_package.yml@v1
with:
flutter_version: 3.22.2
working_directory: passkit_ui
13 changes: 13 additions & 0 deletions .github/workflows/semantic_pull_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: semantic_pull_request

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/semantic_pull_request.yml@v1
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
# Miscellaneous
.atom/
.idea/*
.vscode/*

# Files and directories created by pub
.dart_tool/
.packages
pubspec.lock

# Files and directories created by MacOS
.DS_Store

# Conventional directory for build outputs
build/

# Coverage
coverage/

# Submodules
!pubspec.lock
packages/**/pubspec.lock

# Exceptions
!.vscode/launch.json
!.vscode/tasks.json
Loading