Initial commit with action
Some checks failed
Test compiling project / test (push) Failing after 33s
Some checks failed
Test compiling project / test (push) Failing after 33s
This commit is contained in:
22
.gitea/workflows/on_push.yaml
Normal file
22
.gitea/workflows/on_push.yaml
Normal file
@@ -0,0 +1,22 @@
|
||||
name: Test compiling project
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: debian:latest
|
||||
|
||||
steps:
|
||||
- name: Install necessary dependencies
|
||||
run: apt update && apt install nodejs -y
|
||||
- uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.11'
|
||||
- name: Install Platformio
|
||||
run: pip install --break-system-packages --upgrade platformio
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v2
|
||||
- name: Run PlatformIO
|
||||
run: pio ci -c platformio.ini ./
|
||||
Reference in New Issue
Block a user