Skip to content

Ignore markdown files in CI Tests #348

Ignore markdown files in CI Tests

Ignore markdown files in CI Tests #348

Workflow file for this run

name: CI Tests
on:
push:
branches: [ main ]
paths-ignore:
- 'docs/**'
- '**.md'
pull_request:
branches: [ main ]
paths-ignore:
- 'docs/**'
- '**.md'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Ro-dou
uses: actions/checkout@v3
with:
path: Ro-dou
- name: Run docker-compose
run: cd Ro-dou && make run
- name: run tests
run: cd Ro-dou && make tests