Skip to content

Commit

Permalink
Use python action in github CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sören Peters committed Mar 18, 2024
1 parent 149ba00 commit 8856980
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ name: Build Maps
on: [push]
jobs:
create-images:
runs-on: python:3.11
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: install requirements
run: pip install -r requirements.txt
- name: run script
Expand Down

0 comments on commit 8856980

Please sign in to comment.