Skip to content

Lock file maintenance #7462

Lock file maintenance

Lock file maintenance #7462

---
name: pr-test-hato-bot
# pull_requestで何かあった時に起動する
on:
pull_request:
push:
branches:
- master
- develop
jobs:
# unittestを行う
# testが落ちたらチェックが落ちる
pr-test:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
submodules: "recursive"
- name: Set up Python
uses: actions/[email protected]
with:
python-version-file: .python-version
cache: pipenv
- name: Test
run: bash "${GITHUB_WORKSPACE}/scripts/pr_test_hato_bot/pr_test/test.sh"
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true