Skip to content

Commit

Permalink
Refactor database code around transactions
Browse files Browse the repository at this point in the history
- Force usage of database transactions for all operations around models.
- Add atmospheric data ingest (but no egest? yet)
- Update most dependencies
  • Loading branch information
ngc7293 committed Sep 7, 2024
1 parent 3f52c5b commit 2759d18
Show file tree
Hide file tree
Showing 58 changed files with 2,697 additions and 1,691 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on: push

jobs:
build-test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4.1.7

- name: Install protoc
run: sudo apt-get install protobuf-compiler
Expand All @@ -22,19 +22,19 @@ jobs:
run: cargo test

build-docker:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

needs: build-test
steps:
- name: Login to GitHub Container Registry
uses: docker/login-action@v2.1.0
uses: docker/login-action@v3.3.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4.1.7

- name: Build image
run: docker build . -t ganymede
Expand Down
Loading

0 comments on commit 2759d18

Please sign in to comment.