Skip to content

Commit

Permalink
CI: Add initial GitHub Actions configuration
Browse files Browse the repository at this point in the history
Fixes: #2569
(backported from commit d4cad0f)
  • Loading branch information
Conan-Kudo authored and dmnks committed Nov 13, 2023
1 parent 2a1ab76 commit 06afcc3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Linux CI

on: [push, pull_request]

jobs:
build_and_test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build the Fedora testing environment
run: docker build -t rpm -f ci/Dockerfile .
- name: Run the test suite
run: docker run -t rpm

0 comments on commit 06afcc3

Please sign in to comment.