We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796c79d commit ff93b81Copy full SHA for ff93b81
1 file changed
.github/workflows/ada.yml
@@ -0,0 +1,24 @@
1
+name: Ada (GNAT)
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v3
17
18
+ - name: Set up GNAT toolchain
19
+ run: >
20
+ sudo apt-get update &&
21
+ sudo apt-get install gnat gprbuild
22
23
+ - name: Build
24
+ run: gprbuild -j0 -p
0 commit comments