Skip to content

Commit

Permalink
Merge pull request #118 from py-actions/release-prep-v2
Browse files Browse the repository at this point in the history
v2.0.0 release prep
  • Loading branch information
chrissimpkins committed Dec 14, 2021
2 parents 8736f40 + 7743f8d commit 6b71483
Show file tree
Hide file tree
Showing 5 changed files with 9,970 additions and 2,527 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v2.0.0

- Remove cPython 3.6 GitHub Actions test runner support (all platforms)
- Add cPython 3.10 GitHub Actions test runner support (all platforms)
- update eslint-plugin-import to ^2.25.3
- update eslint-plugin-jsx-a11y to ^6.5.1
- update eslint-plugin-react to ^7.27.1
- update jest to ^27.4.5

## v1.2.0

- Fix: remove custom error string "ERROR: Action failed during execution with error: " in non-zero exit status code reporting. This was not semantically correct when flake8 raises a non-zero exit code for failed lints
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

This GitHub Action installs the Python [flake8 package](https://pypi.org/project/flake8/) in an environment with a Python interpreter and executes flake8 stylistic and logical linting of Python source files. flake8 installation and execution defaults can be configured with optional Action settings.

The project is tested against the latest GitHub Actions Linux, macOS, and Windows runner environment cPython versions 3.7 - 3.10 interpreters on a nightly basis.

## Quick Start

### Default
Expand All @@ -29,7 +31,7 @@ jobs:
with:
python-version: "3.8"
- name: flake8 Lint
uses: py-actions/flake8@v1
uses: py-actions/flake8@v2
```

### With custom settings
Expand All @@ -51,7 +53,7 @@ jobs:
with:
python-version: "3.8"
- name: flake8 Lint
uses: py-actions/flake8@v1
uses: py-actions/flake8@v2
with:
ignore: "F401"
exclude: "src/ignoreme.py"
Expand Down Expand Up @@ -105,10 +107,6 @@ See the inputs below for additional details.

None

## Support

The project is tested against the latest GitHub Actions CI releases of the cPython versions 3.6 - 3.10 and pypy3 interpreters on a nightly basis.

## License

[Apache License, v2.0](LICENSE)

0 comments on commit 6b71483

Please sign in to comment.