Bash file permissions #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bootstrap | |
on: | |
push: | |
branches: [bootstrap] | |
pull_request: | |
branches: [bootstrap] | |
jobs: | |
build: | |
name: python ${{ matrix.python-version }} on ${{matrix.os}} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- {python-version: "3.10", os: ubuntu-latest} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install ebcc | |
run: | | |
python -m pip install wheel | |
python -m pip install .[dev] | |
- name: Install dependencies | |
run: | | |
python -m pip install git+https://github.com/obackhouse/albert@master | |
python -m pip install git+https://github.com/edeprince3/pdaggerq@master | |
python -m pip install git+https://github.com/tschijnmo/drudge@master | |
python -m pip install git+https://github.com/obackhouse/gristmill@master | |
python -m pip install git+https://github.com/tschijnmo/DummyRDD@master | |
- name: Bootstrap | |
run: | | |
git checkout bootstrap | |
chmod +x .github/workflows/bootstrap_all.sh | |
cd ebcc/codegen && ./../../.github/workflows/bootstrap_all.sh | |
- name: Run unit tests | |
run: | | |
python -m pip install pytest | |
pytest |