-
Notifications
You must be signed in to change notification settings - Fork 1
24 lines (22 loc) · 935 Bytes
/
verify-problems.yml
File metadata and controls
24 lines (22 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Verify problems
on: [push]
jobs:
problems:
name: Verify ICPC-style problems
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
sudo apt install automake g++ make libboost-regex-dev libgmp-dev libgmp10 libgmpxx4ldbl python3 python3-pytest python3-setuptools python3-yaml python3-plastex python3-unidecode
python -m pip install --upgrade pip
pip install git+https://github.com/kattis/problemtools@master
pip install -r requirements.txt
python3 problems/statistics10multiplelinearregression/submissions/accepted/stefan.py < problems/statistics10multiplelinearregression/data/sample/1.in
- name: Verify problems
run: (cd problems && make all)