atomaka.com/.gitea/workflows/lint.yaml
Andrew Tomaka 0c064fcbfb
Some checks failed
Linting / lint (pull_request) Failing after 7s
Linting / build (pull_request) Successful in 34s
Install ruby
2024-07-12 21:12:15 -04:00

24 lines
467 B
YAML

name: Linting
on:
pull_request:
jobs:
lint:
runs-on: cth-ubuntu-latest
container:
image: docker.atomaka.com/mdformat
steps:
- uses: actions/checkout@v4
- run: 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