Skip to content

Commit

Permalink
ci: Create smoke-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnAngela authored Aug 21, 2024
1 parent 61d57b5 commit 857436c
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Smoke test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
show-progress: false
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Prepare test data
run: aria2c -i testdata.aria2
- name: Run makedelta
run: python -m makedelta version_list_all.txt version_list_nonlinear.txt
- name: Smoke test
run: sh smoke_test.sh

0 comments on commit 857436c

Please sign in to comment.