mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
[#757] Take out unneeded quotes around strings in yaml
This commit is contained in:
parent
63f2901bf4
commit
8004ef59af
1 changed files with 9 additions and 9 deletions
18
.travis.yml
18
.travis.yml
|
@ -3,26 +3,26 @@ os: linux
|
||||||
language: python
|
language: python
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- stage: "Test"
|
- stage: Test
|
||||||
name: "Python 3.6 on Linux"
|
- name: Python 3.6 on Linux
|
||||||
python: 3.6
|
python: 3.6
|
||||||
- name: "Python 3.7 on Linux"
|
- name: Python 3.7 on Linux
|
||||||
python: 3.7
|
python: 3.7
|
||||||
- name: "Python 3.7 on Linux, not UTC"
|
- name: Python 3.7 on Linux, not UTC
|
||||||
python: 3.7
|
python: 3.7
|
||||||
env:
|
env:
|
||||||
- TZ=America/Edmonton
|
- TZ=America/Edmonton
|
||||||
- name: "Python 3.8 on Linux"
|
- name: Python 3.8 on Linux
|
||||||
python: 3.8
|
python: 3.8
|
||||||
- name: "Python dev on Linux"
|
- name: Python nightly on Linux
|
||||||
python: nightly
|
python: nightly
|
||||||
- name: "Python 3.7.4 on MacOS"
|
- name: Python 3.7.4 on MacOS
|
||||||
os: osx
|
os: osx
|
||||||
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
|
osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4
|
||||||
language: shell # 'language: python' is an error on Travis CI macOS
|
language: shell # 'language: python' is an error on Travis CI macOS
|
||||||
before_install:
|
before_install:
|
||||||
- pip3 install poetry~=0.12.17 # 'pip' points to Python 2 on MacOS
|
- pip3 install poetry~=0.12.17 # 'pip' points to Python 2 on MacOS
|
||||||
- name: "Python 3.7.5 on Windows"
|
- name: Python 3.7 on Windows
|
||||||
os: windows
|
os: windows
|
||||||
language: shell # 'language: python' is an error on Travis CI Windows
|
language: shell # 'language: python' is an error on Travis CI Windows
|
||||||
before_install:
|
before_install:
|
||||||
|
@ -32,7 +32,7 @@ jobs:
|
||||||
- pip install poetry~=0.12.17
|
- pip install poetry~=0.12.17
|
||||||
env:
|
env:
|
||||||
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
|
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
|
||||||
- stage: "Deploy"
|
- stage: Deploy
|
||||||
if: branch = master AND tag IS present
|
if: branch = master AND tag IS present
|
||||||
before_deploy:
|
before_deploy:
|
||||||
- poetry config http-basic.pypi "$PYPI_USER" "$PYPI_PASS"
|
- poetry config http-basic.pypi "$PYPI_USER" "$PYPI_PASS"
|
||||||
|
|
Loading…
Add table
Reference in a new issue