Files
kanimaji-dart/.gitea/workflows/test.yaml
h7x4 bfce7287e8
Some checks failed
Test / test (push) Has been cancelled
WIP: workflow/test: init
2025-08-04 22:16:33 +02:00

34 lines
644 B
YAML

name: "Test"
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: apt-get install dependencies
run: |
apt-get update
apt-get install -y git jq
- run: git config --global --add safe.directory '*'
- run: git clone https://github.com/KanjiVG/kanjivg.git kanjivg
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter pub get
- run: flutter test
env:
KANJIVG_PATH: ${{ github.workspace }}/kanjivg