Skip to content

add release capabilities for tags #60

add release capabilities for tags

add release capabilities for tags #60

Workflow file for this run

name: Code Quality
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: mypy-check
uses: theCapypara/mypy-check@master
with:
path: ""
requirements: types-toml
mypy_flags: "-p celestial --config setup.cfg"
- name: mypy-check2
uses: theCapypara/mypy-check@master
with:
requirements: types-toml
path: "*.py"
mypy_flags: "--config setup.cfg"
go:
name: go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: latest
markdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: markdownlint-cli
uses: nosborn/[email protected]
with:
files: README.md
config_file: " .markdownlint.json"