Skip to content

Commit

Permalink
GIT-2023: expermiental flag to conditionally skip failure
Browse files Browse the repository at this point in the history
  • Loading branch information
harshanarayana committed Mar 27, 2021
1 parent 5489000 commit bae5695
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: PR Patchset
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]

jobs:
build:
Expand All @@ -12,6 +14,7 @@ jobs:
matrix:
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest, windows-latest]
experimental: [false]

steps:
- uses: actions/checkout@v2
Expand All @@ -20,9 +23,11 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Check Python Version
run: |
python --version
- name: Install Dependencies Required for Tests to be run
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions hack/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ SHELL [ "/bin/bash", "-c" ]
ENTRYPOINT []
RUN apt-get update
RUN apt-get install gcc -y
RUN apt-get install -y --no-install-recommends g++

0 comments on commit bae5695

Please sign in to comment.