Skip to content

Commit

Permalink
ci.yml: Add a job to build with the MSRV
Browse files Browse the repository at this point in the history
This jobs does MSRV build and format checks, but does not run
runtime tests.

Signed-off-by: Tomás González <[email protected]>
  • Loading branch information
tgonzalezorlandoarm committed Nov 13, 2023
1 parent 8b7be3c commit 32292e4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,21 @@ jobs:
pip install -r requirements.txt
cd ..
./tests/ci.sh
build:
name: Build and check formatting with the MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Download Parsec Mock, install dependencies and execute build and formatting tests
run: |
curl -s -N -L https://github.com/parallaxsecond/parsec-mock/archive/refs/tags/0.1.1.tar.gz | tar xz
cd parsec-mock-0.1.1/
python -m pip install --upgrade pip
pip install -r requirements.txt
cd ..
./tests/ci.sh --msrv-build

0 comments on commit 32292e4

Please sign in to comment.