Skip to content

Commit

Permalink
Chore(ci): add a ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
till committed Jan 13, 2024
1 parent cea0a8e commit 395d6ed
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
pull_request:

jobs:
example:
runs-on: ubuntu-latest
env:
AWS_ACCESS_KEY_ID: user
AWS_SECRET_ACCESS_KEY: pass
services:
minio:
image: fclairamb/minio-github-actions
ports:
- 9000:9000
steps:
- run: curl -v http://127.0.0.1:9000
- uses: hostwithquantum/setup-mc@${{ github.ref }}
- run: mc alias set minio http://127.0.0.1:9000 $AWS_ACCESS_KEY_ID $AWS_SECRET_ACCESS_KEY
- run: mc mb minio/test
- run: mc ls minio/test

0 comments on commit 395d6ed

Please sign in to comment.