Create shared project setup action

This commit is contained in:
Ryan Ahearn
2022-08-12 16:34:15 -04:00
parent ebc0083330
commit 6e96ffdc09
2 changed files with 17 additions and 18 deletions

View File

@@ -0,0 +1,15 @@
name: Set up project
description: Setup python & install dependencies
runs:
using: composite
steps:
- name: Install container dependencies
shell: bash
run: |
sudo apt-get update \
&& sudo apt-get install -y --no-install-recommends \
libcurl4-openssl-dev
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"