Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Pass in auth token

Pass in auth token #14

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Check formatting with Black
run: black --check .
- name: Check linting with Ruff
run: ruff .
Build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build
run: python -m build .