Skip to content

Commit

Permalink
add karma-chrome-launcher to dev requirements. it was trying to get t…
Browse files Browse the repository at this point in the history
  • Loading branch information
TillerBurr committed Feb 22, 2022
1 parent ac8d0de commit be104bd
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 2,737 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,17 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python 3.10
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: ${{matrix.python-version}}
- uses: actions/setup-node@v1
with:
node-version: 16
Expand All @@ -34,7 +37,7 @@ jobs:
uses: actions/cache@v2
with:
path: ~/.cache/pypoetry/virtualenvs
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}-python-${{ matrix.python-version }}
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}-python-${{matrix.python-version}}
- name: Install Dependencies
run: poetry install
- name: Build project and publish
Expand Down
Loading

0 comments on commit be104bd

Please sign in to comment.