19 lines
377 B
YAML
19 lines
377 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
container:
|
|
image: rust:trixie
|
|
steps:
|
|
- name: prepare packages
|
|
run: |
|
|
apt update && \
|
|
apt -y install git nodejs
|
|
|
|
- run: touch test
|
|
shell: bash
|
|
|
|
- uses: actions/setup-node@v3
|
|
- uses: actions/checkout@v6
|
|
- name: build the package
|
|
run: cargo build
|