Skip to content

remove remnants of python package #96

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
python-version: 3.x
- name: Install python action for doc extraction
run: pip install . -r docs/requirements.txt
run: pip install -r docs/requirements.txt
- name: check mkdocs build
if: github.ref != 'refs/heads/main'
run: mkdocs build
Expand Down
113 changes: 0 additions & 113 deletions .github/workflows/run-dev-tests.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,3 @@ jobs:
propagate_failure: true
trigger_workflow: true
wait_workflow: true
test-package:
needs: [add-tag]
runs-on: ubuntu-latest
steps:
- uses: convictional/[email protected]
with:
owner: cpp-linter
repo: test-cpp-linter-action
github_token: ${{ secrets.PAT_TOKEN }}
workflow_file_name: cpp-lint-package.yml
ref: master
wait_interval: 10
client_payload: '{}'
propagate_failure: true
trigger_workflow: true
wait_workflow: true
2 changes: 0 additions & 2 deletions .gitpod.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,6 @@ repos:
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-added-large-files
- id: check-yaml
- id: check-toml
- id: requirements-txt-fixer
- repo: https://github.com/python/black
rev: '22.6.0'
hooks:
- id: black
args: ["--diff"]
- repo: https://github.com/pycqa/pylint
rev: v2.14.5
hooks:
- id: pylint
name: pylint (action code)
types: [python]
exclude: "^(docs/|tests/|setup.py$)"
additional_dependencies: [pyyaml, requests]
- repo: local
# this is a "local" hook to run mypy (see https://pre-commit.com/#repository-local-hooks)
# because the mypy project doesn't seem to be compatible with pre-commit hooks
hooks:
- id: mypy
name: mypy
description: type checking with mypy tool
language: python
types: [python]
entry: mypy
exclude: "^(docs/|setup.py$)"
additional_dependencies: [mypy, types-pyyaml, types-requests, rich, requests, pytest, pyyaml, '.']
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ For pull requests, please stick to the following guidelines

If you wish to contribute to the python source package used by this action, then that has moved to it's own repository named [cpp-linter](https://github.com/cpp-linter/cpp-linter) as of v2 of this action.

Please note that by contributing any code or documentation to this repository (by raising pull requests, or otherwise) you explicitly agree to the [License Agreement](LICENSE).
Please note that by contributing any code or documentation to this repository (by raising pull requests, or otherwise) you explicitly agree to the [License Agreement](https://github.com/cpp-linter/cpp-linter-action/blob/main/LICENSE).
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@
![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/cpp-linter/cpp-linter-action?style=flat-square)
[![GitHub marketplace](https://img.shields.io/badge/marketplace-C%2FC%2B%2B%20Lint%20Action-blue?logo=github&style=flat-square)](https://github.com/marketplace/actions/c-c-lint-action)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/cpp-linter/cpp-linter-action/cpp-linter?label=cpp-linter&logo=Github&style=flat-square)](https://github.com/cpp-linter/cpp-linter-action/actions/workflows/cpp-linter.yml)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/cpp-linter/cpp-linter-action/MkDocs%20Deploy?label=docs&logo=Github&style=flat-square)](https://github.com/cpp-linter/cpp-linter-action/actions/workflows/mkdocs-deploy.yml)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/cpp-linter/cpp-linter-action/MkDocs%20Deploy?label=docs&logo=Github&style=flat-square)](https://cpp-linter.github.io/cpp-linter-action)
![GitHub](https://img.shields.io/github/license/cpp-linter/cpp-linter-action?label=license&logo=github&style=flat-square)
[![codecov](https://codecov.io/gh/cpp-linter/cpp-linter-action/branch/main/graph/badge.svg?token=4SF7UEDEZ2)](https://codecov.io/gh/cpp-linter/cpp-linter-action)

A Github Action for linting C/C++ code integrating clang-tidy and clang-format to collect feedback provided in the form of thread comments and/or annotations.

Expand Down
160 changes: 0 additions & 160 deletions cpp_linter/__init__.py

This file was deleted.

Loading