Skip to content

Commit 56b09df

Browse files
committed
Add github actions
1 parent 4c620d4 commit 56b09df

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/test_qe.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Test QE 7.3.1 Setup
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
test-qe:
11+
name: Build & Test QE on ${{ matrix.os }}
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [ubuntu-latest, macos-latest]
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v3
20+
21+
- name: Make setup script executable
22+
run: chmod +x ./setup_qe.sh
23+
24+
- name: Run QE setup script
25+
run: ./setup_qe.sh
26+
27+
- name: Test QE installation
28+
shell: bash
29+
run: |
30+
source "${HOME}/qe_setup/activate_qe.sh"
31+
pw.x -h

0 commit comments

Comments
 (0)