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 55b9ee6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 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

0 comments on commit 55b9ee6

Please sign in to comment.