From bb663c032fc632008b7af9f99c1a48aaad196739 Mon Sep 17 00:00:00 2001 From: Felipe Contreras Date: Mon, 6 Mar 2023 14:08:41 -0600 Subject: [PATCH] github: use standard hg packages Signed-off-by: Felipe Contreras --- .github/workflows/main.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bd0040e..ac6496f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,18 +7,17 @@ jobs: strategy: matrix: hg: [ '5.5', '5.6', '5.7', '5.8', '5.9', '6.0', '6.1', '6.2', '6.3' ] - env: - HG_VERSION: ${{ matrix.hg }} steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v4 with: python-version: '3.10' - check-latest: true - - name: Cache check-versions script - id: cache-check-versions - uses: actions/cache@v3 + - uses: actions/cache@v3 + id: cache-pip with: - path: ~/.cache/git-remote-hg - key: check-versions - - run: ./tools/check-versions $HG_VERSION + path: ~/.cache/pip + key: pip + - name: Install hg + run: + pip install mercurial==${{ matrix.hg }} + - run: make test