test: run test with gh actions in docker #288
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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: psf/black@stable | |
release: | |
name: release | |
if: ${{ github.ref == 'refs/heads/main' }} | |
needs: | |
- lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v3 | |
id: release | |
with: | |
release-type: python | |
package-name: kimmdy | |
- uses: actions/checkout@v3 | |
- name: tag stable versions | |
if: ${{ steps.release.outputs.release_created }} | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email github-actions[bot]@users.noreply.github.com | |
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/google-github-actions/release-please-action.git" | |
git tag -d stable || true | |
git push origin :stable || true | |
git tag -a stable -m "Last Stable Release" | |
git push origin stable | |
test: | |
runs-on: ubuntu-latest | |
container: riedmiki/gromacs-plumed-python:2021 | |
steps: | |
- name: Check pr lable | |
uses: jesusvasquez333/verify-pr-label-action@v1.4.0 | |
with: | |
github-token: '${{ secrets.GITHUB_TOKEN }}' | |
valid-labels: 'CI:run_test' | |
invalid-labels: 'autorelease:tagged' | |
disable-reviews: true | |
- uses : actions/checkout@v3 | |
- name: run tox | |
run: tox | |
- name: zip coverage report | |
if: ${{ !cancelled() }} | |
run: zip -r htmlcov.zip htmlcov || true | |
- uses: actions/upload-artifact@v3 | |
if: ${{ !cancelled() }} | |
with: | |
name: coverage artifact | |
path: htmlcov.zip | |
- name: Get exit status for badge | |
if: ${{ failure() }} | |
run: false | |