Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
demid5111 authored Mar 6, 2023
1 parent dd9e184 commit 818f1f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
name: 'Setup environment'
description: 'Setup environment for HSE FIPL courses'
shell: bash

runs:
using: "composite"
steps:
- name: Set up Python 3.10
shell: bash
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Cache pip
uses: actions/cache@v3
id: cache
shell: bash
with:
path: |
./venv/
Expand All @@ -20,5 +22,6 @@ runs:
${{ runner.os }}-venv-
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
run: |
bash config/venv_setup.sh

0 comments on commit 818f1f9

Please sign in to comment.