Skip to content

Fix test execute error #3

Fix test execute error

Fix test execute error #3

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Hatch
uses: pypa/hatch@install
- name: Run Build
run: |
hatch env create
hatch build
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Hatch
uses: pypa/hatch@install
- name: Run Test
env:
FYMAIL_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
hatch env create test
hatch test