Skip to content

Commit 221679b

Browse files
authored
Merge pull request #31 from fortran-lang/add-ci
Add initial GitHub CI
2 parents bee64c5 + 37a759f commit 221679b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/main.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
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.

0 commit comments

Comments
 (0)