Skip to content

reuploading contact form #86

reuploading contact form

reuploading contact form #86

Workflow file for this run

name: CheckLinks
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
checklinks:
name: Linux
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.7
- name: Setup Rubygems, Bundler, jekyll
run: |
gem update --system --no-document
gem update bundler --no-document
gem install jekyll bundler
bundle install
- name: Build jekyll website with drafts
run: bundle exec jekyll build --drafts
- name: Check for broken links
run: |
bundle exec htmlproofer --log-level :debug ./_site &> links.log
continue-on-error: true
- name: Archive log links
uses: actions/upload-artifact@v1
with:
name: links-check.log
path: links.log