Skip to content

Commit

Permalink
Merge pull request #18 from jorgensd/revert-to-nightly
Browse files Browse the repository at this point in the history
Revert to nightly branches and add more files to gitignore
  • Loading branch information
jorgensd authored Oct 25, 2023
2 parents 5252fd3 + f6a5bc6 commit ebc81f7
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,19 @@ jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
container: ghcr.io/fenics/dolfinx/dolfinx:v0.7.0
container: ghcr.io/fenics/dolfinx/dolfinx:nightly
steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: |
python3 -m pip install -r requirements.txt
run: python3 -m pip install -r requirements.txt

- name: Flake8 code
run: python3 -m flake8 .

- name: Type-checking
run: python3 -m mypy .

- name: Run Taylor-Green problem
run: python3 ipcs.py --spatial=4 --temporal=2

Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
*.pvd

*.xdmf
*.h5
*.h5
*.bp
__pycache__
*.msh
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM dolfinx/dolfinx:v0.7.0
FROM ghcr.io/fenics/dolfinx/dolfinx:nightly
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt

0 comments on commit ebc81f7

Please sign in to comment.