diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..79f28504 --- /dev/null +++ b/.github/workflows/build.yml @@ -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 diff --git a/.github/workflows/rust.yml b/.github/workflows/rust-tests.yml similarity index 96% rename from .github/workflows/rust.yml rename to .github/workflows/rust-tests.yml index 2ca5bab6..56904f82 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust-tests.yml @@ -1,4 +1,4 @@ -name: Rust +name: Rust Tests on: push: @@ -11,7 +11,6 @@ env: jobs: build: - runs-on: ubuntu-latest steps: diff --git a/README.md b/README.md index 449574c2..b52ae9b1 100644 --- a/README.md +++ b/README.md @@ -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