atomaka.com/.gitea/workflows/lint.yaml
Andrew Tomaka 1e964c9be9
All checks were successful
Linting / lint (pull_request) Successful in 18s
Linting / build (pull_request) Successful in 22s
¯\_(ツ)_/¯
2024-07-12 22:14:55 -04:00

27 lines
576 B
YAML

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