Skip to content

Commit

Permalink
Create tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ACEnglish authored Jun 3, 2024
1 parent ecf18bd commit d2c8863
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: FuncTests

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Cache python
uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install anybadge
pip install coverage
python setup.py install
- name: Running ssshtest
run: |
bash repo_utils/tdb_ssshtests.sh
- name: Running pylint
run: |
python repo_utils/pylint_maker.py
- name: Uploading badges
uses: actions/upload-artifact@v3
with:
name: htmlcov
path: test_results/htmlcov
- name: Commit README
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "Update coverage score" -a || echo "No changes to commit"
- name: Push README
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.ref }}

0 comments on commit d2c8863

Please sign in to comment.