Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/MAEVE_PR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This is a basic workflow to help you get started with Actions

name: MAEVE PR Build

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
branches: [ master ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Configures AWS creds
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.KNAKAD_AWS_SANDBOX_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.KNAKAD_AWS_SANDBOX_SECRET_ACCESS_KEY }}
aws-region: us-east-2

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo $GITHUB_WORKSPACE
aws sts --region us-west-2 get-caller-identity
12 changes: 10 additions & 2 deletions .github/workflows/MLF_PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,20 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

# Configures AWS creds
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.KNAKAD_AWS_SANDBOX_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.KNAKAD_AWS_SANDBOX_SECRET_ACCESS_KEY }}
aws-region: us-east-2

# Runs a set of commands using the runners shell
- name: Run a multi-line script
run: |
echo $GITHUB_WORKSPACE
echo test, and deploy your project.
aws sts --region us-west-2 get-caller-identity

# Runs a single command using the runners shell
- name: Test Notebooks
run: run-notebook-test.sh
run: ./run-notebook-test.sh
Loading