mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 00:28:22 +00:00
fix: [github workflows] fix test
This commit is contained in:
parent
0d976098e7
commit
eb7981cccf
1 changed files with 10 additions and 8 deletions
18
.github/workflows/ail_framework_test.yml
vendored
18
.github/workflows/ail_framework_test.yml
vendored
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
name: CI
|
name: CI
|
||||||
|
|
||||||
# Controls when the action will run.
|
# Controls when the action will run.
|
||||||
on:
|
on:
|
||||||
# Triggers the workflow on push or pull request events but only for the master branch
|
# Triggers the workflow on push or pull request events but only for the master branch
|
||||||
push:
|
push:
|
||||||
|
@ -16,11 +16,11 @@ jobs:
|
||||||
ail_test:
|
ail_test:
|
||||||
# The type of runner that the job will run on
|
# The type of runner that the job will run on
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [3.6, 3.7, 3.8, 3.9]
|
python-version: [3.6, 3.7, 3.8, 3.9]
|
||||||
|
|
||||||
|
|
||||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
steps:
|
steps:
|
||||||
|
@ -29,8 +29,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
fetch-depth: 500
|
fetch-depth: 500
|
||||||
|
|
||||||
|
|
||||||
# Runs a single command using the runners shell
|
# Runs a single command using the runners shell
|
||||||
- name: Install AIL
|
- name: Install AIL
|
||||||
run: bash installing_deps.sh
|
run: bash installing_deps.sh
|
||||||
|
@ -40,8 +40,10 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
pushd bin
|
pushd bin
|
||||||
bash LAUNCH.sh -l
|
bash LAUNCH.sh -l
|
||||||
|
popd
|
||||||
|
|
||||||
# Runs a set of commands using the runners shell
|
# Runs a set of commands using the runners shell
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: bash LAUNCH.sh -t
|
run: |
|
||||||
|
pushd bin
|
||||||
|
bash LAUNCH.sh -t
|
||||||
|
|
Loading…
Reference in a new issue