Skip to content

CI: Build and upload artifact #1

CI: Build and upload artifact

CI: Build and upload artifact #1

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test
run: |
./test.sh
- name: Build
run: |
./build.sh otf woff2
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wapuro-mincho
path: dist