Skip to content

Commit

Permalink
Add GitHub workflow file
Browse files Browse the repository at this point in the history
This replaces our Semaphore CI setup.
  • Loading branch information
dmnks committed Oct 30, 2023
1 parent 9a2e28a commit 2bca0aa
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Linux CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the test image
run: docker build -t popt -f ci/Dockerfile .
- name: Run the test suite
run: docker run -t popt

0 comments on commit 2bca0aa

Please sign in to comment.