Skip to content

Commit

Permalink
Update gha checkout -> v3
Browse files Browse the repository at this point in the history
  • Loading branch information
evanpurkhiser committed Oct 24, 2022
1 parent bde53a8 commit 0712d69
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,31 @@ name: build
on:
push:
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
build:
name: build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install dependencies
run: |
pip3 install setuptools
sudo apt-get update
sudo apt-get install --yes \
libswresample-dev libavformat-dev libavutil-dev libavcodec-dev \
qt5-default qtbase5-dev \
libfftw3-dev
- name: Install dependencies
run: |
pip3 install setuptools
sudo apt-get update
sudo apt-get install --yes \
libswresample-dev libavformat-dev libavutil-dev libavcodec-dev \
qt5-default qtbase5-dev \
libfftw3-dev
- name: Build libkeyfinder
run: |
git clone https://github.com/ibsh/libKeyFinder.git libkeyfinder
cd libkeyfinder
qmake
sudo make install
- name: Build libkeyfinder
run: |
git clone https://github.com/ibsh/libKeyFinder.git libkeyfinder
cd libkeyfinder
qmake
sudo make install
- name: Build keyfiner-py
run: sudo python3 setup.py build_ext install
- name: Build keyfiner-py
run: sudo python3 setup.py build_ext install

0 comments on commit 0712d69

Please sign in to comment.