Skip to content

Commit

Permalink
Migrate buildkite pipeline to github action #5780
Browse files Browse the repository at this point in the history
  • Loading branch information
StepanBrychta committed Sep 13, 2024
1 parent cf71e14 commit 5e2081f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Release scala-libs"

on: push

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
type: [fixtures, http, json]
steps:
- uses: actions/checkout@v4
- uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: eu-west-1
role-to-assume: ${{ secrets.S3_SCALA_RELEASES_READ_ROLE_ARN }}
- name: Run sbt tests
run: ./builds/run_sbt_tests.sh ${{ matrix.type }}

0 comments on commit 5e2081f

Please sign in to comment.