Skip to content

Commit

Permalink
Added initial GitHub Actions configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Oct 4, 2024
1 parent 75ba75a commit 8d100a2
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push:
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:

tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install kaitaistruct

0 comments on commit 8d100a2

Please sign in to comment.