Skip to content

Commit

Permalink
feat: added Docker GitHub action
Browse files Browse the repository at this point in the history
  • Loading branch information
elijah-potter committed Jan 31, 2024
1 parent ec42204 commit 060c17c
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 'Build'

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: redhat-actions/buildah-build@v2
with:
image: web
layers: false
containerfiles: |
Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Rust
name: Rust Tests

on:
push:
Expand All @@ -11,7 +11,6 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ That's why I created Harper: it is the grammar checker that fits my needs.
Not only does it take milliseconds to lint a document, take less than 1/50th of LanguageTool's memory footprint,
but it is also completely private.

It is even small enough to load via [WebAssembly.](https://harper.elijahpotter.dev)
Harper is even small enough to load via [WebAssembly.](https://harper.elijahpotter.dev)

## Installation

Expand Down

0 comments on commit 060c17c

Please sign in to comment.