Skip to content

Commit

Permalink
Fedora runner
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl committed Aug 27, 2023
1 parent a426373 commit 97c8e79
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ on:
- main

jobs:
fedora-job:
strategy:
matrix:
cc: [ gcc, clang ]
name: ${{ matrix.cc }}
runs-on: ubuntu-latest
container:
image: fedora:rawhide
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
dnf -y install git clang
nosetests-multi-os:
name: Run pytest on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ on:
- main

jobs:
fedora-job:
name: Fedora job
runs-on: ubuntu-latest
container:
image: fedora:rawhide
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
dnf -y install git clang
nosetests-linux:
name: Run pytest on Linux
runs-on: "ubuntu-latest"
Expand Down

0 comments on commit 97c8e79

Please sign in to comment.