This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
add timeout #18
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
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
name: Build bot | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup python | |
id: python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
id: install-deps | |
run: | | |
python3 -m pip install -r requirements.txt | |
- name: Build bot | |
run: "python3 _orangcbot" | |
env: | |
PR_TESTING: 1 |