mirror of
https://github.com/cupcakearmy/autorestic.git
synced 2025-01-04 22:36:25 +00:00
19 lines
286 B
YAML
19 lines
286 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "2"
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: oven-sh/setup-bun@v1
|
|
with:
|
|
bun-version: latest
|
|
- run: bun install
|
|
- run: bun test
|
|
- run: bun bin
|