Skip to content

Run tests by @devraj #138

Run tests by @devraj

Run tests by @devraj #138

Workflow file for this run

name: ci
run-name: Run tests by @${{ github.actor }}
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: |
export GACC_API_KEY=${{ secrets.GACC_API_KEY }}
task test