Skip to content

Commit

Permalink
cicd tests
Browse files Browse the repository at this point in the history
  • Loading branch information
masonmenges committed Apr 18, 2024
1 parent 45b5c22 commit ce3321f
Show file tree
Hide file tree
Showing 13 changed files with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/aws_dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Build image and deploy Prefect flow - Project 1

env:
PROJECT_NAME: flows/aws

on:
push:
paths:
- "flows/aws/**"
workflow_dispatch:

jobs:
deploy:
name: Deploy AWS flows
runs-on: ubuntu-latest

steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"

- name: Filter Paths
uses: dorny/paths-filter@v3
id: filter
with:
# Changed file can be 'added', 'modified', or 'deleted'.
# By default, the type of change is not considered.
# Optionally, it's possible to specify it using nested
# dictionary, where the type of change composes the key.
# Multiple change types can be specified using `|` as the delimiter.
filters: |
addedOrModified:
- added|modified: '**'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file.

0 comments on commit ce3321f

Please sign in to comment.