Skip to content

Build main

Build main #42

Workflow file for this run

name: "Build"
run-name: "Build ${{ github.ref_name }}"
on:
push:
branches: [ main ]
pull_request_target:
branches: [ main ]
schedule:
- cron: "0 9 * * *"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: make install
- name: Test
run: make test
automerge:
name: "Auto Approve"
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
target: minor
use-github-auto-merge: true