Skip to content

Commit

Permalink
Merge pull request #48 from rhusar/ci
Browse files Browse the repository at this point in the history
Add CI using GitHub Actions and htmlproofer.
  • Loading branch information
rhusar committed Jan 10, 2024
2 parents 08b2abc + 8b2efa3 commit db49700
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 8 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
merge_group:
types: [ checks_requested ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: jekyll build
run: bundle exec jekyll build
- name: htmlproofer
run: bundle exec htmlproofer _site/ --disable-external=true
2 changes: 1 addition & 1 deletion _includes/_head.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<!-- Modernizr -->
<script src="{{ site.url }}/assets/js/vendor/modernizr-2.7.1.custom.min.js"></script>

<link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700%7CPT+Serif:400,700,400italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700%7CPT+Serif:400,700,400italic' rel='stylesheet' type='text/css'>

<!-- Icons -->
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon"/>
Expand Down
2 changes: 1 addition & 1 deletion downloads/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ image:

* Java implementation

[http://undertow.io/downloads.html](http://undertow.io/downloads.html)
[https://undertow.io/downloads.html](https://undertow.io/downloads.html)

2 changes: 1 addition & 1 deletion index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ implementation, whereas the C implementation is now in a separate repository as
mod_proxy_cluster.

A pure-Java load balancer implementation is available as part of
[Undertow](http://undertow.io/). Container integration modules are available
[Undertow](https://undertow.io/). Container integration modules are available
for [WildFly](https://wildfly.org) (formerly known as JBoss AS), JBoss EAP and
Apache [Tomcat](https://tomcat.apache.org).

Expand Down
5 changes: 0 additions & 5 deletions script/cibuild

This file was deleted.

0 comments on commit db49700

Please sign in to comment.