feat: Rename job in GitHub Actions Workflow #7
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: Test | |
on: | |
push: {} | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
#runs-on: ["self-hosted", "huge"] | |
container: | |
image: alpine:3.10 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: apk add python3 | |
- run: python3 test.py |