Skip to content

Commit

Permalink
Merge branch 'test_gha_osb2' into test_gha_osb3
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed Dec 14, 2024
2 parents afd9996 + 857fc7a commit 2c9a0f5
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
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

0 comments on commit 2c9a0f5

Please sign in to comment.