We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32d169f commit 212ee6aCopy full SHA for 212ee6a
.github/workflows/publish.yml
@@ -7,7 +7,7 @@ on:
7
8
9
jobs:
10
- publish:
+ test:
11
runs-on: ubuntu-latest
12
13
strategy:
@@ -36,3 +36,20 @@ jobs:
36
37
- name: Test package
38
run: twine check dist/*
39
+ publish:
40
+ runs-on: ubuntu-latest
41
+
42
+ needs: test
43
44
+ steps:
45
+ - run: echo "Setup project.."
46
+ - name: Cloning repository
47
+ uses: actions/checkout@v2
48
+ - name: Setup Python
49
+ uses: actions/setup-python@v2
50
51
+ - name: Install Hatch
52
+ run: pip install hatch
53
54
+ - name: Install twin
55
+ run: pip install twine
.github/workflows/test.yml
@@ -3,7 +3,7 @@ name: Meow Package Testing action
3
on:
4
push:
5
branches:
6
- - main
+ - Dev
0 commit comments