Skip to content

Commit 56c34c4

Browse files
authored
Create ada.yml
1 parent 152dbf8 commit 56c34c4

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/ada.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Ada (GNAT)
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
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

Comments
 (0)