Try to get path using original file uri if previous attempts to get path
failed
#364
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration with Ubuntu | |
on: [push, pull_request] | |
jobs: | |
style: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.x | |
- name: Install Dependencies | |
run: | | |
source ci/ci_ubuntu.sh | |
style_dependencies | |
- name: Style | |
run: | | |
source ci/ci_ubuntu.sh | |
style | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
source ci/ci_ubuntu.sh | |
dependencies | |
- name: Tests | |
run: | | |
source ci/ci_ubuntu.sh | |
tests | |
- name: Upload Coverage | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
env: | |
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
run: | | |
source ci/ci_ubuntu.sh | |
upload_coverage |