Skip to content

Commit 91bf71a

Browse files
committed
Update styles for actions
1 parent e7847a5 commit 91bf71a

File tree

8 files changed

+2
-19
lines changed

8 files changed

+2
-19
lines changed

.github/workflows/release-perl.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ name: Publish to CPAN
22

33
on:
44
push:
5-
branches:
6-
- "release/*"
5+
branches: [release/*]
76

87
jobs:
98
publish-ui:

.github/workflows/release-pypi.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,12 @@ jobs:
1717
steps:
1818
- name: Checkout code
1919
uses: actions/checkout@v4
20-
2120
- name: Set up Python 3.10
2221
uses: actions/setup-python@v5
2322
with:
2423
python-version: "3.10"
25-
2624
- name: Show Python version
2725
run: python --version
28-
2926
- uses: cucumber/[email protected]
3027
with:
3128
working-directory: "python"

.github/workflows/test-go.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
go-version: '1.21.x'
2424
- os: macos-latest
2525
go-version: '1.21.x'
26-
2726
steps:
2827
- uses: actions/checkout@v4
2928
- name: Set up Go

.github/workflows/test-java.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
java: '17'
2424
- os: macos-latest
2525
java: '17'
26-
2726
steps:
2827
- uses: actions/checkout@v4
2928
- uses: actions/setup-java@v4

.github/workflows/test-javascript.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
node-version: '20.x'
2424
- os: macos-latest
2525
node-version: '20.x'
26-
2726
steps:
2827
- name: set git core.autocrlf to 'input'
2928
run: git config --global core.autocrlf input

.github/workflows/test-perl.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,17 @@ jobs:
1515
strategy:
1616
matrix:
1717
perl: [ "5.14", "5.20", "5.26", "5.32" ]
18-
1918
steps:
2019
- name: Check out repository
2120
uses: actions/checkout@v4
22-
2321
- name: Setup Perl environment
2422
uses: shogo82148/actions-setup-perl@v1
2523
with:
2624
perl-version: ${{ matrix.perl }}
2725
working-directory: perl
28-
2926
- name: Run tests
3027
working-directory: perl
3128
run: make test
32-
3329
# Run author tests second so as to not 'contaminate' the environment
3430
# with dependencies listed as author deps when they should have been
3531
# listed as general deps

.github/workflows/test-python.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,7 @@ jobs:
2020
matrix:
2121
os:
2222
- ubuntu-latest
23-
python-version: [ "3.x", "pypy-3.10" ]
24-
# DISABLED: python-version: [ '3.x', '2.x' ]
25-
# include:
26-
# - os: macos-latest
27-
# python-version: '3.x'
28-
23+
python-version: ["3.x","pypy-3.10"]
2924
steps:
3025
- uses: actions/checkout@v4
3126
- name: Set up Python

.github/workflows/test-ruby.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
ruby: '3.2'
2424
- os: macos-latest
2525
ruby: '3.2'
26-
2726
steps:
2827
- uses: actions/checkout@v4
2928
- uses: ruby/setup-ruby@v1

0 commit comments

Comments
 (0)