dsgt-birdclef / birdclef-2022

Code for the BirdCLEF 2022 competition by the DS@GT team
2 stars 3 forks source link

Cache python dependencies in github actions #25

Closed acmiyaguchi closed 2 years ago

acmiyaguchi commented 2 years ago

It takes several minutes to install python dependencies in github actions, it might be useful to configure caching of some kind: https://github.com/actions/setup-python

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
  with:
    python-version: '3.9'
    cache: 'pip'
- run: pip install -r requirements.txt