chore:Create test.yml

This commit is contained in:
盧瞳 2023-12-19 23:13:17 +08:00 committed by GitHub
parent 1f833d6f44
commit 6e97bf13a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

22
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Test Workflow
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Print Python version
run: python --version