From 17850d731af85d097db4f9c4f117d80bff77ba64 Mon Sep 17 00:00:00 2001 From: Bobby Date: Sun, 6 Nov 2022 02:07:53 -0500 Subject: chore: added build workflow --- .github/workflows/texty.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/texty.yaml (limited to '.github') diff --git a/.github/workflows/texty.yaml b/.github/workflows/texty.yaml new file mode 100644 index 0000000..eed732b --- /dev/null +++ b/.github/workflows/texty.yaml @@ -0,0 +1,28 @@ +# This is a github action to build texty +# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions + +name: Texty +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python 3.8 + uses: actions/setup-python@v1 + with: + python-version: 3.8 + - name: Run Setup + run: | + python -m pip install --upgrade pip + python setup.py install + - name: Run Lint Check + run: | + python -m pip install black + black --check . + - name: Run Build + run: | + python setup.py build + +# Path: .github/workflows/texty.yaml +# This is a github action to build typing \ No newline at end of file -- cgit v1.2.3