Skip to content

Commit

Permalink
Add CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctslater committed Jun 7, 2024
1 parent 891620d commit f7c7e8a
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: plot-navigator

on:
pull_request:
branches:
- "main"

jobs:
docker:
runs-on: ubuntu-latest

steps:

-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

-
name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
-
name: Build
id: docker_build
uses: docker/build-push-action@v5
with:
push: false

0 comments on commit f7c7e8a

Please sign in to comment.