API only CI

This commit is contained in:
Jakub Doboš 2023-06-08 23:05:22 +02:00 committed by GitHub
parent 545a5937d8
commit a00607d47a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 30 additions and 0 deletions

30
.github/workflows/apionly.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Invidious CI
on:
push:
branches:
- "master"
jobs:
build:
runs-on: ubuntu-latest
name: "build"
steps:
- uses: actions/checkout@v3
- uses: crystal-lang/install-crystal@v1.6.0
with:
crystal: 1.5.0
- name: Cache Shards
uses: actions/cache@v3
with:
path: ./lib
key: shards-${{ hashFiles('shard.lock') }}
- name: Install Shards
run: |
if ! shards check; then
shards install
fi
- run: crystal build -Dapi_only src/invidious.cr
- uses: actions/upload-artifact@v2.3.1
with:
name: invidious
path: ./invidious