Skip to content

Commit

Permalink
workflow for checkin dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdAmmar committed Nov 15, 2024
1 parent c3378e2 commit 069cb76
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/configuration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: QuAcK Configuration

on:
push:
branches:
- ci
pull_request:
branches:
- master
schedule:
- cron: "00 20 * * 6"


jobs:

configuration:
runs-on: ubuntu-20.04
name: Dependencies

steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt install gfortran gcc liblapack-dev libblas-dev wget python3 make m4 pkg-config libhdf5-dev
- name: ninja
run: |
./configure -i ninja || echo "Configuration failed"

0 comments on commit 069cb76

Please sign in to comment.