github: remove python version #44
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: Build and test | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
env: | |
OS: ${{ matrix.os }} | |
# PYTHON: '3.10' | |
steps: | |
- uses: actions/checkout@master | |
- name: install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y autopoint meson ninja-build gettext libunwind-dev libefl-all-dev libeet1 libeet-bin | |
sudo apt-get install -y check | |
- name: Setup Python | |
uses: actions/setup-python@master | |
# with: | |
# python-version: 3.10 | |
- name: project setup (meson) | |
run: meson setup . build | |
- name: project build (ninja) | |
run: ninja -C build | |
- name: generate coverage report | |
run: | | |
pip install coverage| | |
ninja -C build coverage | |
- name: upload to codecov | |
uses: codecov/[email protected] | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |