Add tests

This commit is contained in:
hwdsl2
2022-10-04 00:47:10 -05:00
parent e47b7c5030
commit 6335bb496e
4 changed files with 227 additions and 0 deletions

27
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
#
# Copyright (C) 2022 Lin Song <linsongui@gmail.com>
name: build
on:
push:
branches: [master]
paths:
- '**.sh'
- '.github/workflows/main.yml'
- '.github/workflows/test_set_1.yml'
- '.github/workflows/test_set_2.yml'
- '.github/workflows/test_set_3.yml'
jobs:
test_set_1:
if: github.repository_owner == 'hwdsl2'
uses: ./.github/workflows/test_set_1.yml
test_set_2:
if: github.repository_owner == 'hwdsl2'
uses: ./.github/workflows/test_set_2.yml
test_set_3:
if: github.repository_owner == 'hwdsl2'
uses: ./.github/workflows/test_set_3.yml