Skip to content

add llama benchmarking (#207) #41

add llama benchmarking (#207)

add llama benchmarking (#207) #41

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: echo "Build step placeholder"
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check
run: echo "Check step placeholder"
publish:
needs: [build, check]
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- name: Publish
run: echo "Publish step placeholder"