From e44174bcbefce6517aebe2ed8b0149ec77d82429 Mon Sep 17 00:00:00 2001 From: "Charles P." Date: Fri, 31 May 2024 21:17:42 +0200 Subject: [PATCH] test with sample feed --- .forgejo/workflows/test.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index fa3a856..825c594 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -10,7 +10,14 @@ jobs: uses: actions/checkout@v4 - name: Run GTFS Route Modifier - uses: gtfs-actions/route-type-modifier@v1 + uses: gtfs-actions/route-type-modifier@main with: - gtfs_file: 'path/to/your/gtfs.zip' - routes: '1:3,2:5' \ No newline at end of file + gtfs_file: 'sample-feed.zip' + routes: 'AB:5,BFC:1' + output_file: 'modified-feed.zip' + + - name: Upload modified feed + uses: actions/upload-artifact@v2 + with: + name: modified-feed + path: modified-feed.zip \ No newline at end of file