Skip to content

remove gemfury

remove gemfury #93

Workflow file for this run

name: "Test Myriad"
on:
pull_request:
types: [opened, synchronize]
jobs:
run-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install -U pip
pip install -e .
- name: Install package and test
env:
GIT_USER_NAME: github-actions
GIT_USER_EMAIL: [email protected]
GH_API_DELETE_TOKEN: ${{ secrets.AUTOBOT_QA_ADMIN_TOKEN }}
run: |
git config --global user.name $GIT_USER_NAME
git config --global user.email $GIT_USER_EMAIL
make pytest