23 lines
446 B
YAML
23 lines
446 B
YAML
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
|