Skip to content

Commit

Permalink
Merge pull request #177 from jedwards4b/git_workflow
Browse files Browse the repository at this point in the history
get git workflow working
  • Loading branch information
jedwards4b authored Jan 9, 2023
2 parents dcd462d + ace90b2 commit 45b7c01
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bumpversion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/github-tag-action@v5.5
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This is a workflow to compile the cmeps source without cime
name: extbuild
name: Test Manic

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
Expand All @@ -18,6 +18,13 @@ jobs:
- name: Test Manic
run: |
pushd test
git config --global user.email "devnull@example.com"
git config --global user.name "GITHUB tester"
git config --global protocol.file.allow always
make utest
make stest
popd
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3

0 comments on commit 45b7c01

Please sign in to comment.