Skip to content

Commit

Permalink
Add test workflow (#1750)
Browse files Browse the repository at this point in the history
  • Loading branch information
WalshyDev authored May 10, 2023
1 parent 40ca30c commit 86b4f57
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test
on: push

permissions:
contents: read

jobs:
make-test:
name: make test
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v3

- name: Install dependencies
run: sudo apt install -y autopoint

- name: Run test
run: make test

0 comments on commit 86b4f57

Please sign in to comment.