From 727398d32ffdd134ad7c2d7dfc4f30f22c598bcd Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Sun, 25 Apr 2021 03:51:01 +0000 Subject: [PATCH] added sample build-cli workflow Former-commit-id: 36dad7b22d95a2b66ae00da609d3a9a406cceb6e --- .github/workflows/build-cli.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build-cli.yml diff --git a/.github/workflows/build-cli.yml b/.github/workflows/build-cli.yml new file mode 100644 index 0000000..681ab31 --- /dev/null +++ b/.github/workflows/build-cli.yml @@ -0,0 +1,17 @@ +# This workflow will install Python dependencies, run tests and lint with a variety of Python versions +# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions + +name: Superscript Unit Tests + +on: + release: + types: [published, edited] + +jobs: + generate: + name: Build Linux + runs-on: ubuntu-latest + + steps: + - name: Checkout master + uses: actions/checkout@master