Fix validation error on TeapotReplica #860
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run checks | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: install nox | |
run: | | |
python -m pip install nox | |
- name: lint | |
run: | | |
python -m nox -s lint | |
test: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
strategy: | |
matrix: | |
python-version: ["3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: install nox | |
run: | | |
python -m pip install nox | |
- name: Run tests | |
env: | |
GENSHIN_COOKIES: ${{ secrets.GENSHIN_COOKIES }} | |
HONKAI_COOKIES: ${{ secrets.HONKAI_COOKIES }} | |
LOCAL_GENSHIN_COOKIES: ${{ matrix.python-version == '3.10' && secrets.LOCAL_GENSHIN_COOKIES || '' }} | |
run: | | |
python -m nox -s test --verbose -- --cov-append | |
mv .coverage .coverage.${{ matrix.python-version }} | |
# - name: Upload coverage | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: coverage | |
# path: .coverage.${{ matrix.python-version }} | |
# retention-days: 1 | |
# if-no-files-found: error | |
# upload-coverage: | |
# needs: [test] | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout repo | |
# uses: actions/checkout@v4 | |
# - name: Setup python 3.10 | |
# uses: actions/setup-python@v5 | |
# with: | |
# python-version: "3.10" | |
# - name: Download coverage | |
# uses: actions/download-artifact@v3 | |
# with: | |
# name: coverage | |
# - name: Combine coverage | |
# run: | | |
# pip install -r ./genshin-dev/pytest-requirements.txt | |
# coverage combine | |
# coverage xml -i | |
# - name: Upload coverage to codeclimate | |
# uses: paambaati/[email protected] | |
# env: | |
# CC_TEST_REPORTER_ID: cd8c7d84ae5f98d86882d666dce0946fe5aae1e63f442995bd9c6e17869e6513 | |
# with: | |
# coverageLocations: .coverage.xml:coverage.py | |
type-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: install nox | |
run: | | |
python -m pip install nox | |
- name: Run type checker | |
run: | | |
python -m nox -s type-check | |
verify-types: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: install nox | |
run: | | |
python -m pip install nox | |
- name: Run type checker | |
run: | | |
python -m nox -s verify-types | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run prettier | |
run: | | |
npx prettier --check *.md docs/*.md *.yml |