mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-14 02:13:35 +08:00
- Added a new test workflow to run comprehensive tests for the worker, server, and agent components. - Updated the main CI configuration to include the new test workflow. - Added a new Makefile for the agent to manage build, run, test, and lint tasks. - Updated .gitignore to exclude additional IDE files. - Removed redundant test steps from the CI configuration for cleaner execution.
17 lines
231 B
YAML
17 lines
231 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main, develop]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check-generated:
|
|
uses: ./.github/workflows/check-generated-files.yml
|
|
|
|
test:
|
|
uses: ./.github/workflows/test.yml
|