Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/main.workflow
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ workflow "Build and deploy pull requests" {
action "Ruby Example" {
uses = "./.github/ruby_action"
secrets = ["GITHUB_TOKEN"]
runs = "make install && make test"
}
21 changes: 21 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
.DEFAULT_GOAL := help

.PHONY: help install clean run build test

help: ##show this help
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'

install: ##runs bundle install
bundle install

clean: ##runs jekyll clean
bundle exec jekyll clean

run: clean ##runks jekyll serve
bundle exec jekyll serve --config _config.yml,_config-dev.yml

build: clean ##runs jekyll build
bundle exec jekyll build

test: build ##runs jekyll build and htmlrpoofer
bundle exec htmlproofer --http-status-ignore "999" ./_site
9 changes: 0 additions & 9 deletions Rakefile

This file was deleted.