atomaka.com/.gitea/workflows/lint.yaml
Andrew Tomaka 9073df8de7
All checks were successful
Linting / build (pull_request) Successful in 20s
Linting / lint (pull_request) Successful in 26s
try docker run action
2024-07-12 23:01:30 -04:00

28 lines
626 B
YAML

name: Linting
on:
pull_request:
jobs:
lint:
runs-on: cth-ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: addnab/docker-run-action@v3
with:
image: docker.atomaka.com/mdformat:latest
options: --volumes-from=${{ env.JOB_CONTAINER_NAME }}
run: |
cd ${{ github.workspace }}
mdformat --check _posts/
build:
runs-on: cth-ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
- run: |
gem install bundler
bundle install
bundle exec jekyll build