ci: install dev packages to get pytest #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build and Test | |
env: | |
GIT_SSH_KEY: ${{ secrets.GIT_SSH_KEY }} | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# - name: Setup SSH Agent | |
# uses: webfactory/ssh-agent@v0.5.3 | |
# with: | |
# ssh-private-key: ${{ secrets.GIT_SSH_KEY }} | |
# | |
# - name: Clone Required Repos | |
# run: git clone git@github.com:TetraVeda/kaslcred.git | |
- name: Resolve Version | |
run: | | |
IMAGE_VERSION=$(git describe --tags --abbrev=0) | |
echo "IMAGE_VERSION=$IMAGE_VERSION" >> $GITHUB_ENV | |
echo "building version $IMAGE_VERSION" | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install pipenv | |
run: | | |
python -m pip install pipenv | |
python -m pip install pipenv --dev | |
- name: Install dependencies | |
run: PIPENV_VENV_IN_PROJECT=1 pipenv install --deploy --ignore-pipfile | |
- name: Run tests | |
run: pipenv run python -m pytest | |
- name: Build | |
run: pipenv run python -m build |