8000 Dev fix spelling by 0golovatyi · Pull Request #408 · tableau/TabPy · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Dev fix spelling #408

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 5 commits into from
Apr 6, 2020
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
22 changes: 22 additions & 0 deletions .github/workflows/pull_fix_spelling.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Fix spelling on push

on: [push]

jobs:
build:
name: ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
python-version: [3.7]
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v2
- uses: sobolevn/misspell-fixer-action@master
- uses: peter-evans/create-pull-request@v2.4.4
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'Fixes by misspell-fixer'
title: 'Typos fix by misspell-fixer'
2 changes: 1 addition & 1 deletion docs/server-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Configuration parameters can be updated with:
1. Adding environment variables - set the environment variable as required by
your Operating System. When creating environment variables, use the same
name for your environment variable as specified in the config file.
2. Specifying a parameter in a config file (enviroment variable value overwrites
2. Specifying a parameter in a config file (environment variable value overwrites
configuration setting).

Configuration file with custom settings is specified as a command line parameter:
Expand Down
2 changes: 1 addition & 1 deletion docs/server-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,6 @@ and specify it in command line:
tabpy --config=path/to/my/config/file.conf
```

It is highly recommended to use Python virtual enviroment for running TabPy.
It is highly recommended to use Python virtual environment for running TabPy.
Check the [Running TabPy in Python Virtual Environment](tabpy-virtualenv.md) page
for more details.
0