Try composite action

This commit is contained in:
Ayaz Salikhov
2022-05-12 14:09:06 +03:00
parent 730455606c
commit 49f9c0e7ca

View File

@@ -1,16 +1,15 @@
name: "Build environment"
description: "Create build environment"
on: workflow_call
runs:
using: "composite"
steps:
- name: Maximize build space 🛠
shell: bash
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
shell: bash
# Setup docker to build for multiple platforms, see:
# https://github.com/docker/build-push-action/tree/master#usage
@@ -28,7 +27,7 @@ runs:
python-version: 3.x
- name: Install Dev Dependencies 📦
shell: bash
run: |
pip install --upgrade pip
pip install -r requirements-dev.txt
shell: bash