Skip to content

Commit

Permalink
Add GitHub Actions workflow for building packages
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Jun 16, 2022
1 parent 24bc2dd commit 2e621d1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI
"on":
push:
branches:
- master
pull_request:
branches:
- master
jobs:
Build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
cache-dependency-path: "**/setup.py"
- run: pip install build -e .
- run: make import-cldr
- run: python -m build
- uses: actions/upload-artifact@v3
with:
name: dist
path: dist

0 comments on commit 2e621d1

Please sign in to comment.