Hide text in API documentation under logo and run target for tests #64
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ada (GNAT) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up GNAT toolchain and dependencies | |
run: > | |
sudo apt-get update && | |
sudo apt-get install gnat gprbuild libcsfml-dev libglu1-mesa-dev | |
- name: Build | |
run: gprbuild -j0 -p asfml.gpr | |
- name: Build tests | |
run: > | |
make -k -C tests |