ソースを参照

Create test_of_validate_package action

pull/3011/head
Matheus Felipe 2年前
コミット
46279792f2
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: AA785C523274872F
1個のファイルの変更26行の追加0行の削除
  1. +26
    -0
      .github/workflows/test_of_validate_package.yml

+ 26
- 0
.github/workflows/test_of_validate_package.yml ファイルの表示

@@ -0,0 +1,26 @@
name: "Tests of validate package"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
unittest:
name: 'Run tests of validate package'
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'

- name: Run Unittest
run: |
cd scripts
python -m unittest discover tests/ --verbose

読み込み中…
キャンセル
保存