Skip to content

Commit

Permalink
add action back
Browse files Browse the repository at this point in the history
  • Loading branch information
efectn committed Jun 22, 2023
1 parent d09f430 commit 6206279
Show file tree
Hide file tree
Showing 3 changed files with 479 additions and 449 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/results.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
on:
push:
branches:
- master
- main

name: Generate Results
jobs:
Results:
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
services:
postgres:
image: 'postgres:latest'
ports:
- '5432:5432'
env:
POSTGRES_DB: test
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
steps:
- name: Fetch Repository
uses: actions/checkout@v3
- name: Generate Results
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
.github/run_benchmarks_actions.sh > results.md
git add results.md
git commit -am "Generate benchmark results automatically."
git push
Loading

0 comments on commit 6206279

Please sign in to comment.