Skip to content

fix: SearchTest

fix: SearchTest #34

Workflow file for this run

name: "build"
on:
push:
paths-ignore:
- '**/*.md'
pull_request:
paths-ignore:
- '**/*.md'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK 11
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: '11'
- name: chmod -R 777 *
run: chmod -R 777 *
- name: Assemble
run: ./gradlew assemble --scan
- name: Test Video
run: ./gradlew test --tests "xyz.cssxsh.bilibili.VideoTest" --scan --info
- name: Test Season
run: ./gradlew test --tests "xyz.cssxsh.bilibili.SeasonTest" --scan --info
- name: Test Search
run: ./gradlew test --tests "xyz.cssxsh.bilibili.SearchTest" --scan --info
- name: BuildPlugin
run: ./gradlew buildPlugin
- name: Upload
uses: actions/upload-artifact@v4
with:
name: build
path: build/mirai/*