Skip to content

Add CLAUDE.md, AGENTS.md and a skill doc in English (#1033) #280

Add CLAUDE.md, AGENTS.md and a skill doc in English (#1033)

Add CLAUDE.md, AGENTS.md and a skill doc in English (#1033) #280

Workflow file for this run

name: Bazel
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, macos-14]
steps:
- uses: actions/checkout@v4
- uses: bazelbuild/setup-bazelisk@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: bazel build //:opencc
- run: bazel test --test_output=all //src/... //data/... //test/... //python/...
- name: upload artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: opencc-bazel-${{ matrix.os }}
path: |
bazel-bin/**
bazel-testlogs/**