Skip to content

Commit

Permalink
Merge pull request #3854 from kinow/py39-experimental
Browse files Browse the repository at this point in the history
Add Python 3.9 for unit tests in CI (experimental, do not stop other builds if it fails)
  • Loading branch information
kinow authored Nov 4, 2020
2 parents 06455a2 + 496c211 commit f656c97
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:

- name: Build Docker container
run: |
docker build -t bash:test dockerfiles/bash/
docker run --name bash -v $(pwd -P):/root/cylc-flow --rm -t -d bash:test /bin/bash
docker build -t bash:test -m 1G --memory-swap 1G dockerfiles/bash/
docker run --name bash -v $(pwd -P):/root/cylc-flow --rm -t -d -m 1G --memory-swap 1G bash:test /bin/bash
docker ps -a
- name: Install Cylc dependencies in the container
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,15 @@ on: [pull_request]
jobs:
fast-tests:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
timeout-minutes: 15
strategy:
matrix:
python-version: ['3.7', '3.8']
experimental: [false]
include:
- python-version: 3.9
experimental: true
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit f656c97

Please sign in to comment.