You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
748 B
37 lines
748 B
name: Check Release
|
|
on:
|
|
push:
|
|
branches:
|
|
- "*"
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
|
|
permissions:
|
|
contents:
|
|
write
|
|
|
|
jobs:
|
|
check_release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Base Setup
|
|
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
|
|
|
|
- name: Upgrade packaging dependencies
|
|
run: |
|
|
pip install --upgrade jupyter-packaging~=0.10 --user
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install .
|
|
|
|
- name: Check Release
|
|
uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
version_spec: next
|