We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ecc60bf + 0ac9623 commit 7867e00Copy full SHA for 7867e00
.github/workflows/validate.yml
@@ -3,14 +3,12 @@ on: [push, pull_request]
3
jobs:
4
rawhide:
5
runs-on: ubuntu-latest
6
- container:
7
- image: registry.fedoraproject.org/fedora:rawhide
8
steps:
9
- name: Clone repository
10
uses: actions/checkout@v2
11
12
- - name: install test dependencies
13
- run: dnf install -y python3-pylint python3-gobject-base make
14
-
15
- - name: run tests
16
- run: make ci
+ - name: Run test
+ run: |
+ podman run --rm -v .:/simpleline:Z --workdir /simpleline registry.fedoraproject.org/fedora:rawhide sh -c " \
+ dnf install -y python3-pylint python3-gobject-base make; \
+ make ci"
0 commit comments