Skip to content

Commit

Permalink
Add tests for PRs and push to master
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Feb 8, 2024
1 parent ea29da5 commit 3211c82
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Run tests
on:
workflow_dispatch:
push:
branches:
- main
pull_request:

jobs:
run:
runs-on: ubuntu-latest
steps:
# Checkout repo
- name: Fetch the repository code
uses: actions/checkout@v4

- name: Build Docker image
run: docker build . -t tinty

- name: Run Docker container
run: docker run tinty

0 comments on commit 3211c82

Please sign in to comment.