Skip to content

Commit

Permalink
bootstrap GH action CI (#1413)
Browse files Browse the repository at this point in the history
Initial setup to kickstart the GH actions CI process.
This will allow us to test follow on PRs for the
migration to GH actions.
  • Loading branch information
zaro0508 committed Jan 15, 2024
1 parent d8c8f36 commit 1fbdb36
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: main

on:
push:
branches:
- '*'
tags:
- '^v([0-9]+)\.([0-9]+)\.([0-9]+)(?:([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$'
pull_request:
branches:
- '*'

jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: run pre-commit
run: poetry run pre-commit run --all-files --show-diff-on-failure

0 comments on commit 1fbdb36

Please sign in to comment.