Skip to content

add .gitignore & PR open/merge actions #3

add .gitignore & PR open/merge actions

add .gitignore & PR open/merge actions #3

name: Feast apply (AWS)
on:
push:
branches:
- main
jobs:
feast_apply:
runs-on: ubuntu-latest
steps:
- name: Setup Python
id: setup-python
uses: actions/setup-python@v2
with:
python-version: "3.7"
architecture: x64
- name: Set up AWS SDK
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-1
# Run `feast apply`
- uses: actions/checkout@v2
- name: Install feast
run: pip install "feast[aws]==0.34.1"
- name: Run feast apply
env:
FEAST_USAGE: "False"
IS_TEST: "True"
run: |
cd module_0/feature_repo_aws
feast apply