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.
1 parent 63bd5fb commit be6efd6Copy full SHA for be6efd6
1 file changed
.github/workflows/ci.yml
@@ -8,12 +8,15 @@ jobs:
8
test:
9
runs-on: ubuntu-latest
10
11
+ container:
12
+ image: "archlinux:base-devel"
13
+
14
env:
15
FIXTURES_NO_RECORD: 1
16
17
steps:
18
- uses: actions/checkout@v6
- - uses: actions/setup-python@v5
- - run: pip install cram
- - uses: extractions/setup-just@v2
19
- - run: just test
+ - run: pacman -Sy --needed --noconfirm just python-cram
20
+ - run: |
21
+ useradd ci
22
+ runuser -u ci -- just test
0 commit comments