diff options
author | Andrew Lewis <nerf@judo.za.org> | 2024-03-13 18:00:17 +0200 |
---|---|---|
committer | Andrew Lewis <nerf@judo.za.org> | 2024-03-14 14:51:50 +0200 |
commit | 6aee123f55dba79d76ab0a5395093ddd5a7f4988 (patch) | |
tree | 330f654a60b0c3163c53d1cc2fc329dd21754287 /.github/workflows/ci.yml | |
parent | 41e564da7af9c552cef0640c1fddb235cafd854e (diff) | |
download | rspamd-6aee123f55dba79d76ab0a5395093ddd5a7f4988.tar.gz rspamd-6aee123f55dba79d76ab0a5395093ddd5a7f4988.zip |
[Test] Migrate to Github Actions
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..6544bd3f0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: ci + +on: + pull_request: + branches: + - master + push: + branches: + - master + +jobs: + linters: + uses: ./.github/workflows/ci_linters.yml + + fedora: + uses: ./.github/workflows/ci_rspamd.yml + with: + image: ghcr.io/fatalbanana/gha-images:fedora-ci + name: fedora-ci + + ubuntu: + uses: ./.github/workflows/ci_rspamd.yml + with: + image: ghcr.io/fatalbanana/gha-images:ubuntu-ci + name: ubuntu-ci |