24 lines
511 B
YAML
24 lines
511 B
YAML
name: Linux arm64
|
|
run-name: Run genaration
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
Build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repository code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Pip
|
|
run: |
|
|
apt update
|
|
apt install python3-virtualenv -y
|
|
virtualenv --python=python3 pythonenv
|
|
source pythonenv/bin/activate
|
|
pip install -r requirements.txt
|
|
|
|
- name: Run
|
|
run: |
|
|
source pythonenv/bin/activate
|
|
python3 main.py |