16 lines
309 B
YAML
16 lines
309 B
YAML
name: Test Commit
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout repository
|
|
uses: actions/checkout@v3
|
|
- name: install dependencies
|
|
run: apt-get install -y p7zip-full
|
|
- name: build release archives
|
|
run: make
|