-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (49 loc) · 1.41 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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:
- uses : actions/checkout@v3
- name: run tox
run: |
tox
zip -r htmlcov.zip htmlcov
- uses: actions/upload-artifact@v3
if: ${{ !cancelled() }}
with:
name: coverage artifact
path: htmlcov.zip