Skip to content

Commit dd39242

Browse files
committed
Update github action workflows
1 parent 22db926 commit dd39242

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
publish:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- name: install
1717
run:
1818
pip install -r requirements.txt

.github/workflows/test.yml renamed to .github/workflows/tests.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
name: Test
1+
name: Tests
22

33
on:
44
push:
5-
# tags:
6-
# - 'v*'
5+
pull_request:
6+
branches: [ master ]
77

88
env:
99
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
1010

1111
jobs:
1212
test:
1313
runs-on: ubuntu-latest
14+
1415
steps:
15-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1617
- name: install
1718
run:
1819
pip install -r requirements.txt
@@ -31,8 +32,9 @@ jobs:
3132

3233
build:
3334
runs-on: ubuntu-latest
35+
3436
steps:
35-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v3
3638
- name: install
3739
run:
3840
pip install -r requirements.txt

0 commit comments

Comments
 (0)