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 4c620d4 commit 56b09dfCopy full SHA for 56b09df
.github/workflows/test_qe.yml
@@ -0,0 +1,31 @@
1
+name: Test QE 7.3.1 Setup
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
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