Skip to content

Commit 24d6be6

Browse files
committed
add JetBrains to .gitignore, install NetCDF
1 parent 17bef00 commit 24d6be6

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/testing.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
3131
- name: Checkout Repository
3232
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
33+
with:
34+
persist-credentials: false
3335

3436
- name: Install linters
3537
run: |
@@ -68,6 +70,18 @@ jobs:
6870
6971
- name: Checkout Repository
7072
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
73+
with:
74+
persist-credentials: false
75+
76+
- name: Install NetCDF (Linux)
77+
if: matrix.os == 'ubuntu-latest'
78+
run: |
79+
sudo apt-get update
80+
sudo apt-get install -y libnetcdf-dev
81+
- name: Install NetCDF (macOS)
82+
if: matrix.os == 'macos-latest'
83+
run: |
84+
brew install netcdf
7185
7286
- name: Fetch NetCDF CMake script
7387
run: |
@@ -113,6 +127,8 @@ jobs:
113127
114128
- name: Checkout Repository
115129
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
130+
with:
131+
persist-credentials: false
116132

117133
- name: Install dependencies (Windows)
118134
if: matrix.os == 'windows-latest'

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,6 @@ Makefile
4141
# Runtime artifacts
4242
Raven
4343
Raven_errors.txt
44+
45+
# JetBrains
46+
.idea

0 commit comments

Comments
 (0)