Skip to content

Commit

Permalink
fix: Working on cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr0p42 committed Jul 24, 2024
1 parent 245414c commit eebdfed
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/wip.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI/CD Workflow

on:
push:
branches:
- 178-schedule-abi-using-github-action
pull_request:
branches:
- 178-schedule-abi-using-github-action

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build Docker image
run: make build

- name: Run Papermill
run: docker run --rm -it --platform linux/amd64 abi papermill main.ipynb output.ipynb

0 comments on commit eebdfed

Please sign in to comment.