Skip to content

Bump pytest from 8.4.1 to 8.4.2 #337

Bump pytest from 8.4.1 to 8.4.2

Bump pytest from 8.4.1 to 8.4.2 #337

Workflow file for this run

name: Branch Name
on:
pull_request:
push:
schedule:
- cron: "0 0 1 * *" # Midnight every month (UTC)
workflow_dispatch:
env:
BRANCH_NAME: "${{ github.head_ref || github.ref_name }}"
jobs:
run:
name: Run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Show event that triggered the workflow
run: echo "github.event_name is '${{ github.event_name }}'"
- name: Show github.base_ref
run: echo "github.base_ref is '${{ github.base_ref }}'"
- name: Show github.head_ref
run: echo "github.head_ref is '${{ github.head_ref }}'"
- name: Show github.ref_name
run: echo "github.ref_name is '${{ github.ref_name }}'"
- name: Show github.ref
run: echo "github.ref is '${{ github.ref }}'"
- name: Show branch name
run: echo "branch name is '${BRANCH_NAME}'"