整理: 情報機能を API Router でモジュール化 (#1192) #374
Workflow file for this run
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: test | |
on: | |
push: | |
pull_request: | |
branches: | |
- "**" | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, macos-latest, windows-latest] | |
python: ["3.11.3"] | |
steps: | |
- name: <Setup> Check out the repository | |
uses: actions/checkout@v4 | |
- name: <Setup> Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: pip | |
- name: <Setup> Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install -r requirements-test.txt | |
- name: <Test> Validate poetry.lock | |
run: | | |
poetry lock --no-update | |
git diff --exit-code | |
- name: <Test> Check dependency lists | |
run: | | |
poetry export --without-hashes -o requirements.txt.check | |
poetry export --without-hashes --with dev -o requirements-dev.txt.check | |
poetry export --without-hashes --with test -o requirements-test.txt.check | |
poetry export --without-hashes --with license -o requirements-license.txt.check | |
diff -q requirements.txt requirements.txt.check || \ | |
diff -q requirements-dev.txt requirements-dev.txt.check || \ | |
diff -q requirements-test.txt requirements-test.txt.check || \ | |
diff -q requirements-license.txt requirements-license.txt.check > /dev/null | |
if [ $? = 1 ]; then | |
echo "poetry export has some diff" | |
exit 1 | |
fi | |
- name: <Test> Check format | |
run: pysen run lint | |
- name: <Test> Test codes and coverage | |
run: coverage run --omit=test/* -m pytest | |
- name: <Deploy> Submit coverage results to Coveralls | |
if: matrix.os == 'ubuntu-20.04' | |
run: coveralls --service=github | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check licenses | |
shell: bash | |
run: | | |
OUTPUT_LICENSE_JSON_PATH=/dev/null \ | |
bash build_util/create_venv_and_generate_licenses.bash | |
- name: Test names by checking typo | |
if: ${{ startsWith(matrix.os, 'ubuntu-') }} | |
uses: crate-ci/[email protected] |