diff --git a/.github/workflows/meta.yml b/.github/workflows/meta.yml index 0e0f836..df9c753 100644 --- a/.github/workflows/meta.yml +++ b/.github/workflows/meta.yml @@ -20,14 +20,14 @@ on: jobs: qa: uses: plone/meta/.github/workflows/qa.yml@2.x - test: - uses: plone/meta/.github/workflows/test.yml@2.x coverage: uses: plone/meta/.github/workflows/coverage.yml@2.x dependencies: uses: plone/meta/.github/workflows/dependencies.yml@2.x release_ready: uses: plone/meta/.github/workflows/release_ready.yml@2.x + circular: + uses: plone/meta/.github/workflows/circular.yml@2.x ## # To modify the list of default jobs being created add in .meta.toml: diff --git a/.meta.toml b/.meta.toml index bca5bb3..ba5e714 100644 --- a/.meta.toml +++ b/.meta.toml @@ -3,7 +3,7 @@ # See the inline comments on how to expand/tweak this configuration file [meta] template = "default" -commit-id = "2.8.0" +commit-id = "2.8.1.dev0" [tox] test_matrix = {"6.2" = ["*"]} @@ -16,12 +16,3 @@ per-file-ignores = [pyproject] dependencies_ignores = "['decorator', 'robotframework-selenium2library', 'robotsuite', 'selenium']" - -[github] -jobs = [ - "qa", - "test", - "coverage", - "dependencies", - "release_ready", - ] diff --git a/news/+17f3d09f.tests.rst b/news/+17f3d09f.tests.rst new file mode 100644 index 0000000..f372765 --- /dev/null +++ b/news/+17f3d09f.tests.rst @@ -0,0 +1 @@ +Update meta workflow: add ``circular``, remove ``test`` (replaced with test-matrix). [maurits]