Skip to content

Commit

Permalink
[GL2GH] Convert GitLab CI to GitHub Actions
Browse files Browse the repository at this point in the history
Far simple than what we did in KPA.

Fixes: #41
  • Loading branch information
rascasoft committed Jan 16, 2025
1 parent ff64239 commit 4a21d2b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Check markdown quality via Linter

env:
KPA_PROJECT: kiratech

on: [push]

jobs:
lint:
runs-on: ubuntu-latest
container:
image: ghcr.io/mmul-it/kpa:v1.0.0
options: --user root
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create symlink to workspace
run: ln -sf /__w/labs/labs /kpa/projects/${KPA_PROJECT}
- name: Check markdown files for example project
run: mdl -c /kpa/.mdlrc $(find /kpa/projects/${KPA_PROJECT} -name '*.md')

0 comments on commit 4a21d2b

Please sign in to comment.