Skip to content

Commit 759ee17

Browse files
authored
Merge pull request #8 from octue/update-ci-names
Update workflow names
2 parents 4fa7141 + 45eef0c commit 759ee17

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/cd.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: cd
2+
13
# Only trigger when a pull request into main branch is merged
24
on:
35
pull_request:
@@ -9,7 +11,7 @@ on:
911
jobs:
1012
publish:
1113
# This job will only run if the PR has been merged (and not closed without merging).
12-
if: "github.event.pull_request.merged == true"
14+
if: 'github.event.pull_request.merged == true'
1315
permissions:
1416
id-token: write
1517
contents: read

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# the `language` matrix defined below to confirm you have the correct set of
1010
# supported CodeQL languages.
1111
#
12-
name: 'CodeQL'
12+
name: codeql
1313

1414
on:
1515
push:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Octue
3+
Copyright (c) 2023 Octue Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[![PyPI version](https://badge.fury.io/py/django-svelte-jsoneditor.svg)](https://badge.fury.io/py/django-svelte-jsoneditor)
2-
[![Release](https://github.com/octue/django-svelte-jsoneditor/actions/workflows/release.yml/badge.svg)](https://github.com/octue/django-svelte-jsoneditor/actions/workflows/release.yml)
32
[![Documentation Status](https://readthedocs.org/projects/django-svelte-jsoneditor/badge/?version=latest)](https://django-svelte-jsoneditor.readthedocs.io/en/latest/?badge=latest)
43
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
54
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-svelte-jsoneditor"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "A widget for django's JSONField using the latest-and-greatest Json Editor"
55
authors = ["Tom Clark <[email protected]>"]
66
license = "MIT"

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tox]
2-
envlist = {py39,py310,py311}-dj{32,41}-{sqlite,postgres}
2+
envlist = {py39,py310,py311}-dj{32,42}-{sqlite,postgres}
33
isolated_build = True
44

55
[testenv]
66
whitelist_externals = poetry
77
setenv =
8-
DJANGO_SETTINGS_MODULE=tests.server.settings_ci
8+
DJANGO_SETTINGS_MODULE=tests.server.settings
99
PYTHONPATH = {toxinidir}:{toxinidir}/django_svelte_jsoneditor
1010
sqlite: DATABASE_ENGINE=sqlite
1111
postgres: DATABASE_ENGINE=postgres
@@ -15,7 +15,7 @@ commands =
1515
coverage xml
1616
deps =
1717
dj32: Django>=3.2,<3.3
18-
dj41: Django>=4.1,<4.2
18+
dj42: Django>=4.2,<4.3
1919
postgres: psycopg2
2020

2121
[gh-actions]

0 commit comments

Comments
 (0)