Skip to content

Commit

Permalink
Add packs emulation job
Browse files Browse the repository at this point in the history
  • Loading branch information
aelmekeev committed Mar 5, 2024
1 parent 5fa0fb8 commit 870f833
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/packs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Packs

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
strategy:
matrix:
pack: ["packs/cats.csv","packs/elements.csv","packs/famous-art-robberies.csv","packs/harry-potter-and-the-deathly-hallows-part-2.csv","packs/mcdonalds-baby-animals.csv","packs/mcdonalds-minions-rise-of-gru.csv","packs/star-wars-rise-of-the-bounty-hunters.csv","packs/star-wars-starships.csv","packs/the-art-game.csv","packs/the-big-bang-theory.csv"] # ls -1 packs/*.csv | jq -Rsc 'split("\n")[:-1]'
run_emulations:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run tests
run: |
python top_trumps.py --emulations 10 --pack ${{ matrix.pack }}
```

0 comments on commit 870f833

Please sign in to comment.