Skip to content

Commit

Permalink
Merge pull request #19 from math280h/feature/gh-lint-type
Browse files Browse the repository at this point in the history
Added typing and linting to gh actions
  • Loading branch information
math280h committed Jul 27, 2021
2 parents 6d85ba8 + f7dd7d7 commit 16da860
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/typing-linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: "Typing and Linting"

on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '24 14 * * 5'

jobs:
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
actions: read
contents: read

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes nox
- name: Initialize Nox
uses: excitedleigh/setup-nox@v2.0.0

- name: Runs nox
run: nox

0 comments on commit 16da860

Please sign in to comment.