Skip to content

test: run test with gh actions in docker #284

test: run test with gh actions in docker

test: run test with gh actions in docker #284

Workflow file for this run

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'
- uses : actions/checkout@v3
- name: run tox
run: tox || true
- name: zip coverage report
run: zip -r htmlcov.zip htmlcov || true
- uses: actions/upload-artifact@v3
with:
name: coverage artifact
path: htmlcov.zip