Skip to content

Commit

Permalink
#163: Copy the example config to config.json
Browse files Browse the repository at this point in the history
- This commit also adds 'name' tags to everything to make things more understandable
  • Loading branch information
MRichards99 committed Jan 6, 2021
1 parent 863d1f2 commit 81acc92
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,24 @@ jobs:
python-version: ['3.6', '3.7', '3.8']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
- name: Checkout repo
uses: actions/checkout@v2
- name: Prepare config.json
run: cp config.json.example config.json
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install nox==2020.8.22
- run: pip install poetry==1.1.4
- run: nox
- name: Install Nox
run: pip install nox==2020.8.22
- name: Install Poetry
run: pip install poetry==1.1.4
- name: Run Nox safety session
run: nox -s safety
- name: Run Nox lint session
run: nox -s lint
- name: Run Nox black session
run: nox -s black
- name: Run Nox tests session
run: nox -s tests

0 comments on commit 81acc92

Please sign in to comment.