We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 221679b + f6fd4c7 commit ae5591fCopy full SHA for ae5591f
.github/workflows/main.yml
@@ -1,17 +1,17 @@
1
name: CI
2
3
-on: [push]
+on: [push, pull_request]
4
5
jobs:
6
- build:
7
-
+ Linux:
8
runs-on: ubuntu-latest
9
10
steps:
11
- uses: actions/checkout@v1
12
- - name: Run a one-line script
13
- run: echo Hello, world!
14
- - name: Run a multi-line script
15
- run: |
16
- echo Add other actions to build,
17
- echo test, and deploy your project.
+ - name: Install GFortran
+ run: sudo apt-get install gfortran
+ - name: cmake
+ run: cmake .
+ - name: make
+ run: make
+ - name: test
+ run: ctest --output-on-failure
0 commit comments