Skip to content

Commit

Permalink
Merge branch 'main' into robotics_switch
Browse files Browse the repository at this point in the history
  • Loading branch information
glipR authored Aug 15, 2020
2 parents 22a5e74 + be428d4 commit 6f1e3fc
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 16 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/docs_check.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
name: Pull Request Docs Check
name: Docs Check

on: [pull_request]
on:
pull_request_target:
push:
branches-ignore:
- gh-pages

jobs:
build:
check-docs:

runs-on: ubuntu-latest

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- main

jobs:
build:
deploy-docs:
runs-on: ubuntu-latest

steps:
Expand All @@ -28,4 +28,4 @@ jobs:
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
publish_dir: ./docs/_build/html
10 changes: 4 additions & 6 deletions .github/workflows/pypi_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@ on:
create:
tags:
- v*

jobs:
build-and-release:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: 3.x
- name: Install dependencies
run: |
sudo apt-get update
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ name: Python package

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
branches-ignore: gh-pages
pull_request_target:
branches-ignore: gh-pages

jobs:
build:
test-package:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.7, 3.8, 3.x]

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 6f1e3fc

Please sign in to comment.