Skip to content

Commit

Permalink
Added Fedora.
Browse files Browse the repository at this point in the history
  • Loading branch information
facundobatista committed Feb 29, 2024
1 parent 34922f9 commit c9f143f
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/integtests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
branches: [ master ]

jobs:

archlinux:
runs-on: ubuntu-latest
container:
Expand All @@ -23,7 +24,24 @@ jobs:
pacman -Sy --noconfirm python3 python-setuptools
- name: Simple fades run
run: |
echo ${{ github.workspace }}
echo $GITHUB_WORKSPACE
cd /fades
bin/fades -v -d pytest -x pytest --version
fedora:
runs-on: ubuntu-latest
container:
image: fedora:latest
volumes:
- ${{ github.workspace }}:/fades
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: |
yum install --assumeyes python3-setuptools
- name: Simple fades run
run: |
cd /fades
bin/fades -v -d pytest -x pytest --version

0 comments on commit c9f143f

Please sign in to comment.