Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert to nightly branches and add more files to gitignore #18

Merged
merged 1 commit into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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