ci/test: add gitea workflow and comprehensive test coverage
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
name: Test PR
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
test:
|
||||
if: "!contains(github.event.pull_request.labels.*.name, 'Kind/Documentation')"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Make scripts executable
|
||||
run: |
|
||||
chmod +x color-tool
|
||||
chmod +x tests/run_tests.sh
|
||||
|
||||
- name: Run test suite
|
||||
run: ./tests/run_tests.sh
|
||||
Reference in New Issue
Block a user