Skip to content

Commit

Permalink
bump actions versions, remove branch filters from push trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Oct 20, 2023
1 parent 810b777 commit eebddbc
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: Integration testing
on:
push:
branches:
- master
- develop*
- ci-diagnose*
paths-ignore:
- '**.md'
pull_request:
Expand All @@ -29,20 +25,19 @@ jobs:
steps:

- name: Checkout repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: executables

- name: Checkout modflow6
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: MODFLOW-USGS/modflow6
path: modflow6

- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v1
with:
micromamba-root-path: ${{ runner.temp }}/micromamba-root
environment-file: modflow6/environment.yml
cache-environment: true
cache-downloads: true
Expand All @@ -60,7 +55,6 @@ jobs:
working-directory: modflow6
run: |
meson setup builddir -Ddebug=false --prefix=$(pwd) --libdir=bin
meson compile -v -C builddir
meson install -C builddir
- name: Show meson build log
Expand Down Expand Up @@ -100,7 +94,9 @@ jobs:
- name: Set executable permission
if: runner.os != 'Windows'
working-directory: modflow6/bin/downloaded
run: sudo chmod +x *
run: |
sudo chmod +x *
ls -l
- name: Test modflow6
working-directory: modflow6/autotest
Expand Down

0 comments on commit eebddbc

Please sign in to comment.