Bump version number for git-publish 1.8.2 release #74
Workflow file for this run
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Ubuntu Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: "actions/setup-python@v2" | |
with: | |
python-version: "3.8" | |
- name: Install git-email | |
run: sudo add-apt-repository ppa:git-core/ppa && sudo apt-get update && sudo apt-get install -qy git-email | |
- name: Run the test suite | |
run: testing/run_tests.sh |