GH Actions steps added

This commit is contained in:
Gonzalo Acuña 2023-01-24 08:42:39 -03:00
parent d9e7114df3
commit 0cd0f4a419
No known key found for this signature in database
GPG Key ID: 646BA79A313A2270

View File

@ -36,8 +36,17 @@ jobs:
needs: start-runner # required to start the main job when the runner is ready needs: start-runner # required to start the main job when the runner is ready
runs-on: ${{ needs.start-runner.outputs.label }} # run the job on the newly created runner runs-on: ${{ needs.start-runner.outputs.label }} # run the job on the newly created runner
steps: steps:
- name: Hello World - name: Check out the codebase.
run: echo 'Hello World!' uses: actions/checkout@v2
- name: Hack to get setup-python to work on act. See act issue 251
run: |
if [ ! -f "/etc/lsb-release" ] ; then
echo "DISTRIB_RELEASE=18.04" > /etc/lsb-release
fi
- name: Set up Python 3.
uses: actions/setup-python@v2
with:
python-version: '3.x'
stop-runner: stop-runner:
name: Stop self-hosted EC2 runner name: Stop self-hosted EC2 runner
needs: needs: