Skip to content

Merge pull request #117 from h4iku/add-t5apr #76

Merge pull request #117 from h4iku/add-t5apr

Merge pull request #117 from h4iku/add-t5apr #76

Workflow file for this run

name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- if: ${{ github.event_name == 'pull_request' }}
uses: actions/checkout@v3
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
- name: Run build script
run: |
python build.py
- name: Commit changes
if: ${{ github.event_name == 'push' }}
uses: EndBug/add-and-commit@v9
with:
default_author: github_actions