File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 # directory: "/"
55 # schedule:
66 # interval: daily
7- - package-ecosystem : ' github-actions'
8- directory : ' / '
7+ - package-ecosystem : " github-actions"
8+ directory : " / "
99 schedule :
1010 # Check for updates once a week
11- interval : ' weekly'
11+ interval : " weekly"
Original file line number Diff line number Diff line change 33 push :
44 pull_request :
55 schedule :
6- - cron : ' 0 0 * * *' # Daily “At 00:00”
6+ - cron : " 0 0 * * *" # Daily “At 00:00”
77 workflow_dispatch : # allows you to trigger manually
88
99jobs :
1919 with :
2020 # For workflows which are triggered concurrently with the same
2121 # contents, attempt to execute them exactly once.
22- concurrent_skipping : ' same_content_newer'
22+ concurrent_skipping : " same_content_newer"
2323 paths_ignore : ' ["**/doc/**"]'
2424
2525 build :
3333 strategy :
3434 fail-fast : false
3535 matrix :
36- python-version : [' 3.8', ' 3.9', ' 3.10' ]
36+ python-version : [" 3.8", " 3.9", " 3.10" ]
3737 steps :
3838 - uses : actions/checkout@v3
3939 - uses : conda-incubator/setup-miniconda@v2
4444 auto-update-conda : false
4545 python-version : ${{ matrix.python-version }}
4646 environment-file : ci/environment.yml
47- mamba-version : ' * '
47+ mamba-version : " * "
4848 use-mamba : true
4949 miniforge-variant : Mambaforge
5050
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Upstream CI
22on :
33 push :
44 schedule :
5- - cron : ' 0 0 * * *' # Daily “At 00:00” UTC
5+ - cron : " 0 0 * * *" # Daily “At 00:00” UTC
66 workflow_dispatch : # allows you to trigger the workflow run manually
77
88jobs :
1515 strategy :
1616 fail-fast : false
1717 matrix :
18- python-version : [' 3.10' ]
18+ python-version : [" 3.10" ]
1919 steps :
2020 - uses : actions/checkout@v3
2121 - uses : conda-incubator/setup-miniconda@v2
2727 auto-update-conda : false
2828 python-version : ${{ matrix.python-version }}
2929 environment-file : ci/upstream-dev-environment.yml
30- mamba-version : ' * '
30+ mamba-version : " * "
3131 use-mamba : true
3232 miniforge-variant : Mambaforge
3333
Original file line number Diff line number Diff line change 1919 hooks :
2020 - id : pyupgrade
2121 args :
22- - ' --py37-plus'
22+ - " --py37-plus"
2323
2424 - repo : https://github.com/psf/black
2525 rev : 24.4.2
Original file line number Diff line number Diff line change 55comment : false
66
77ignore :
8- - ' tests/*.py'
9- - ' setup.py'
8+ - " tests/*.py"
9+ - " setup.py"
1010
1111coverage :
1212 precision : 2
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ version: 2
22conda :
33 environment : ci/environment-docs.yml
44build :
5- os : ' ubuntu-20.04'
5+ os : " ubuntu-20.04"
66 tools :
7- python : ' mambaforge-4.10'
7+ python : " mambaforge-4.10"
You can’t perform that action at this time.
0 commit comments