2021-06-09 17:18:04 +02:00
|
|
|
# This is a basic workflow to help you get started with Actions
|
|
|
|
|
|
|
|
name: CI
|
|
|
|
|
2021-06-11 15:34:08 +02:00
|
|
|
# Controls when the action will run.
|
2021-06-09 17:18:04 +02:00
|
|
|
on:
|
|
|
|
# Triggers the workflow on push or pull request events but only for the master branch
|
|
|
|
push:
|
|
|
|
branches: [ master, dev ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master, dev ]
|
|
|
|
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
|
|
jobs:
|
|
|
|
# This workflow contains a single job called "build"
|
|
|
|
ail_test:
|
|
|
|
# The type of runner that the job will run on
|
|
|
|
runs-on: ubuntu-latest
|
2021-06-11 15:34:08 +02:00
|
|
|
|
2021-06-09 17:18:04 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-05-22 15:36:51 +02:00
|
|
|
python-version: ['3.7', '3.8', '3.9', '3.10']
|
2021-06-11 15:34:08 +02:00
|
|
|
|
2021-06-09 17:18:04 +02:00
|
|
|
|
|
|
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
|
|
|
steps:
|
|
|
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
2023-05-22 15:29:55 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-06-09 17:18:04 +02:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
2021-06-11 14:33:55 +02:00
|
|
|
fetch-depth: 500
|
2021-06-11 15:34:08 +02:00
|
|
|
|
|
|
|
|
2021-06-09 17:18:04 +02:00
|
|
|
# Runs a single command using the runners shell
|
|
|
|
- name: Install AIL
|
|
|
|
run: bash installing_deps.sh
|
|
|
|
|
|
|
|
# Runs a set of commands using the runners shell
|
|
|
|
- name: Launch AIL
|
|
|
|
run: |
|
|
|
|
pushd bin
|
|
|
|
bash LAUNCH.sh -l
|
2021-06-11 15:34:08 +02:00
|
|
|
popd
|
|
|
|
|
2021-06-09 17:18:04 +02:00
|
|
|
# Runs a set of commands using the runners shell
|
|
|
|
- name: Run tests
|
2021-06-11 15:34:08 +02:00
|
|
|
run: |
|
|
|
|
pushd bin
|
|
|
|
bash LAUNCH.sh -t
|