Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
carlthome committed Dec 4, 2023
1 parent 1547958 commit dd10233
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,16 @@ on:
- main

concurrency:
group: build-${{ github.event.pull_request.number || github.ref }}
group: ${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
build:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ hashFiles('requirements.txt') }}
- run: pip install -r requirements.txt
- run: python -c 'exec(open("README.md").read().split("```")[1][6:])'
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
cache: pip
- run: pip install -r requirements.txt
- run: python -c 'exec(open("README.md").read().split("```")[1][6:])'

0 comments on commit dd10233

Please sign in to comment.