Skip to content

Huggingface downloader & Simpler log message & InterruptMixin #20

Huggingface downloader & Simpler log message & InterruptMixin

Huggingface downloader & Simpler log message & InterruptMixin #20

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-and-test:
name: Build and Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Python, install dependencies, and run tests
run: |
python -m pip install --upgrade pip
python -m llama_api.server.app_settings --install-pkgs
python -m unittest discover tests
build-release:
if: github.event_name == 'push' && success()
needs: build-and-test
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Shorten SHA
id: shorten_sha
run: echo "::set-output name=sha::$(echo ${GITHUB_SHA:0:7})"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.shorten_sha.outputs.sha }}
release_name: master-${{ steps.shorten_sha.outputs.sha }}
draft: false
prerelease: false