Created
January 12, 2020 12:11
-
-
Save Gr1N/9251fb0fcf7d75b652a184b1a59276e9 to your computer and use it in GitHub Desktop.
10 things I love about GitHub Actions (matrix-builds)
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
strategy: | |
matrix: | |
python-version: [3.6, 3.7, 3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- runs: pip install -U -r requirements.txt | |
- runs: pytest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment