mirrors: HEANet has announced their mirror service will end in August. #312
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install libxml2-utils | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install pip dependencies | |
run: pip install lxml | |
- name: Check | |
run: make check |