Skip to content

Commit

Permalink
hi
Browse files Browse the repository at this point in the history
  • Loading branch information
jbruechert committed Feb 16, 2024
1 parent fcbc612 commit 7c76778
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test-import.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Fetch branches and submodules
run: git fetch --unshallow && git submodule update --init --checkout --remote && git checkout -b pr
run: git clone https://github.com/public-transport/transitous -b ${{ github.head_ref }} --recursive $GITHUB_WORKSPACE
- name: Build docker images
run: docker build -t transitous . -f ci/container/Containerfile
- name: Verify that new feeds can be downloaded
Expand Down
2 changes: 1 addition & 1 deletion ci/fetch-feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
case "merge-request":
# Find all files that were changed in the latest commit
changed_files = subprocess.check_output(
["git", "diff", "--name-only", "HEAD~1", "HEAD"]) \
["git", "diff", "--name-only", "origin/main", "HEAD"]) \
.decode().splitlines()

changed_feeds = [f for f in changed_files if
Expand Down

0 comments on commit 7c76778

Please sign in to comment.