Skip to content
Snippets Groups Projects
Commit 5c5cbcfe authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Merge two action into one

parent 56e39139
No related branches found
No related tags found
3 merge requests!147Merge previous default branch feat-cod-rmq into main,!98Feat GitHub action,!94WIP: Merge feat_prod_rmq with feat_cod_rmq
......@@ -8,7 +8,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.6
uses: actions/setup-python@v2
with:
......@@ -16,6 +17,8 @@ jobs:
python-version: '3.6'
# Optional - x64 or x86 architecture, defaults to x64
architecture: 'x64'
- name: find trailing whitespace
uses: harupy/find-trailing-whitespace@master
- name: Install dependencies
run: |
python -m pip install --upgrade pip
......
name: Find trailing space
on: [push, pull_request]
jobs:
example:
name: Find Trailing Space
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: harupy/find-trailing-whitespace@master
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment