[emb] Fix hf emb path and apply normalization (#92) #77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python CI (Deps) | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/[email protected] | |
with: | |
python-version: '3.9' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r docker/requirements.txt | |
# Add additional steps here for your testing or validation process | |
# - name: Build docker image | |
# run: | | |
# mkdir -p build | |
# cp .env.template build/.env | |
# docker build . --file build/Dockerfile --tag autonews-github-action:$(date +%s) |