Skip to content

Commit

Permalink
Add GitHub Action to test PR
Browse files Browse the repository at this point in the history
  • Loading branch information
bkpoon committed Feb 22, 2025
1 parent c3bdc2f commit e4b3272
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test_pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: test
on:
workflow_dispatch:
push:

jobs:
test_pr_1044:

name: Testing PR 1044
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
path: cctbx_project

- name: Run Docker
run: |
cd cctbx_project/fable/docker
docker buildx build -t fable-dock .
- name: Run example
run: docker run -i -w $(pwd) --volume=$(pwd):$(pwd):rw -t fable-dock --example

0 comments on commit e4b3272

Please sign in to comment.