Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: Intial software release🎉 #26

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 0 additions & 55 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,61 +13,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.4'

- name: Install dependencies
run: |
sudo apt-get update && sudo apt-get install -y make
sudo apt-get install -y ffmpeg
sudo apt-get update
sudo apt-get install -y python3.11 python3.11-venv python3.11-dev python3.11-distutils
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
python3 --version

- name: Set up Python environment
run: |
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip

- name: Install Python dependencies
run: |
source venv/bin/activate
pip install -r ./python/requirements.txt

- name: Fetch dependencies
run: make deps

- name: Update dependencies
run: make update

- name: Format code
run: make fmt

- name: Build
run: make build

- name: Test
run: make test

- name: Echo Go version
run: go version

- name: Install staticcheck
run: go install honnef.co/go/tools/cmd/staticcheck@latest

- name: Static Check
run: make static-check

- name: Install gosec
run: go install github.com/securego/gosec/v2/cmd/gosec@latest

- name: Security Scan
run: make security-scan

- name: Set up Git
run: |
git config user.name "kingmariano"
Expand Down
Loading