Bump version #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
env: | |
LEO_USER: ${{ secrets.LEO_USER }} | |
LEO_PASSWORD: ${{ secrets.LEO_PASSWORD }} | |
on: | |
push: | |
branches: | |
- master # Execute on every push | |
workflow_dispatch: # Execute on manual trigger | |
jobs: | |
build-and-start: | |
runs-on: ubuntu-latest # Linux base image | |
steps: | |
- uses: actions/checkout@v3 # Checkout repo | |
- uses: oven-sh/setup-bun@v1 # Setup bun | |
with: | |
bun-version: latest # You can also use a specific version | |
- run: bun install # Only needed if you have any dependencies | |
- run: bun test # Change to your entrypoint! |