/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to .github/workflows/pythonpackage.yml

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-06-12 13:47:28 UTC
  • mfrom: (7514.1.1 actions-disable-pypi)
  • Revision ID: breezy.the.bot@gmail.com-20200612134728-5ehti0e3ut1vbov9
Mark pypy3 build as experimental since it currently fails.

Merged from https://code.launchpad.net/~jelmer/brz/actions-disable-pypi/+merge/385653

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
jobs:
6
6
  build:
7
7
 
 
8
    continue-on-error: ${{ matrix.experimental }}
8
9
    runs-on: ${{ matrix.os }}
9
10
    strategy:
10
11
      matrix:
11
12
        os: [ubuntu-latest]
12
 
        python-version: [3.6, 3.7, 3.8, pypy3]
 
13
        python-version: [3.6, 3.7, 3.8]
 
14
        experimental: [false]
 
15
        include:
 
16
          - os: ubuntu-latest
 
17
            python-version: pypy3
 
18
            experimental: true
13
19
      fail-fast: false
14
20
 
15
21
    steps: