Skip to content

Commit

Permalink
Update github action workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
satterly committed Mar 19, 2023
1 parent 22db926 commit dd39242
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install
run:
pip install -r requirements.txt
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/test.yml → .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name: Test
name: Tests

on:
push:
# tags:
# - 'v*'
pull_request:
branches: [ master ]

env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install
run:
pip install -r requirements.txt
Expand All @@ -31,8 +32,9 @@ jobs:

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install
run:
pip install -r requirements.txt
Expand Down

0 comments on commit dd39242

Please sign in to comment.