Skip to content

Commit

Permalink
test.yml GH action improve step names
Browse files Browse the repository at this point in the history
  • Loading branch information
janosh committed Oct 12, 2023
1 parent 02b85b6 commit 56124dd
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches: [main]
pull_request:
branches: [main]
release:
types: [published]
workflow_dispatch:
Expand Down Expand Up @@ -51,6 +50,7 @@ jobs:
coverage-reports: coverage.xml

build_source_dist:
name: Build source distribution
needs: tests
runs-on: ubuntu-latest
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && inputs.task == 'release')
Expand All @@ -73,7 +73,7 @@ jobs:
path: dist/*.tar.gz

build_wheels:
name: Build wheels for ${{ matrix.os }}
name: Build wheels for Python ${{ matrix.python-version }} on ${{ matrix.os }}
needs: tests
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && inputs.task == 'release')
strategy:
Expand All @@ -97,6 +97,7 @@ jobs:
path: wheelhouse

release:
name: Release wheels and source distribution to PyPI
needs: [build_wheels, build_source_dist]
runs-on: ubuntu-latest
permissions:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repos:
- id: black-jupyter

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-case-conflict
- id: check-symlinks
Expand Down Expand Up @@ -49,7 +49,7 @@ repos:
- svelte

- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.50.0
rev: v8.51.0
hooks:
- id: eslint
types: [file]
Expand Down
20 changes: 10 additions & 10 deletions site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@
},
"devDependencies": {
"@sveltejs/adapter-static": "^2.0.3",
"@sveltejs/kit": "^1.25.0",
"@sveltejs/kit": "^1.25.2",
"@sveltejs/vite-plugin-svelte": "^2.4.6",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-plugin-svelte": "^2.33.1",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-plugin-svelte": "^2.34.0",
"hastscript": "^8.0.0",
"mdsvex": "^0.11.0",
"prettier": "^3.0.3",
"prettier-plugin-svelte": "^3.0.3",
"rehype-autolink-headings": "^7.0.0",
"rehype-slug": "^6.0.0",
"svelte": "^4.2.0",
"svelte-check": "^3.5.1",
"svelte-multiselect": "^10.1.0",
"svelte": "^4.2.1",
"svelte-check": "^3.5.2",
"svelte-multiselect": "^10.2.0",
"svelte-preprocess": "^5.0.4",
"svelte-toc": "^0.5.6",
"svelte-zoo": "^0.4.9",
"svelte2tsx": "^0.6.21",
"svelte2tsx": "^0.6.23",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9"
"vite": "^4.4.11"
},
"prettier": {
"semi": false,
Expand Down

0 comments on commit 56124dd

Please sign in to comment.