diff options
Diffstat (limited to '.github/workflows/wee-slack.yml')
-rw-r--r-- | .github/workflows/wee-slack.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.github/workflows/wee-slack.yml b/.github/workflows/wee-slack.yml index ce6080a..7decad2 100644 --- a/.github/workflows/wee-slack.yml +++ b/.github/workflows/wee-slack.yml @@ -2,7 +2,7 @@ name: wee-slack on: [push, pull_request] jobs: - test: + build: if: > github.event_name == 'push' || ( github.event_name == 'pull_request' && @@ -30,3 +30,10 @@ jobs: - run: poetry run pyright --pythonversion 3.7 main.py slack tests typings - run: poetry run pytest tests + + - run: ./build.sh + + - uses: actions/upload-artifact@v3 + with: + name: slack.py + path: build/slack.py |