diff options
| -rw-r--r-- | .github/workflows/texty.yaml | 28 |
1 files changed, 28 insertions, 0 deletions
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 |
