-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'test_gha_osb2' into test_gha_osb3
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Continuous build | ||
|
||
on: | ||
schedule: | ||
- cron: "1 1 1 */1 *" | ||
push: | ||
branches: [ master, development, test* ] | ||
pull_request: | ||
branches: [ master, development, test* ] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: [ubuntu-latest] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: [ "3.8", "3.9", "3.10" ] | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Current file info | ||
run: | | ||
ls -alt | ||
df -h | ||
du -h | ||
pip list | ||
- name: Install NWBE locally | ||
run: python utilities/install.py | ||
|
||
- name: Final file info | ||
run: | | ||
ls -alt | ||
df -h | ||
du -h | ||
- name: Final version info | ||
run: | | ||
pip list |