aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2024-01-17 15:41:11 +0800
committer简律纯 <i@jyunko.cn>2024-01-17 15:41:11 +0800
commita066ba06d05474b054a2c47ddfee09f4a9b3c57f (patch)
treef309aad68775f26991dc702ee2861572c343151f /.github
parent959885e4c13fdd447733046d06916d9061dad402 (diff)
downloadipm-a066ba06d05474b054a2c47ddfee09f4a9b3c57f.tar.gz
ipm-a066ba06d05474b054a2c47ddfee09f4a9b3c57f.zip
feat(ci|test): enhance test and test commit
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
new file mode 100644
index 0000000..8d90f73
--- /dev/null
+++ b/.github/workflows/test.yml
@@ -0,0 +1,23 @@
+on:
+ push:
+ workflow_dispatch:
+
+jobs:
+ test-api:
+ name: test commit
+ runs-on: ubuntu-latest
+ permissions:
+ id-token: write
+ contents: write
+
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: actions/setup-python@v5
+ with:
+ python-version: "3.9"
+
+ - run: |
+ pwd
+ cd tests
+ python3 -m test-api.py \ No newline at end of file