Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/containerfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
IMAGE_NAME: epiforesite/epiworldpythonstreamlit

jobs:
build-and-push:
Expand Down
21 changes: 18 additions & 3 deletions .github/workflows/copilot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,38 @@ name: GitHub Copilot Dev Environment
on:
workflow_dispatch:

permissions:
contents: read
packages: read

jobs:
copilot:
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.repository }}:latest
image: ghcr.io/epiforesite/epiworldpythonstreamlit:latest
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Sync dependencies
run: uv sync --frozen
run: uv sync --frozen --group dev --no-install-project

- name: Install development dependencies and tools
run: |
sudo apt-get update && sudo apt-get install -y \
git \
vim \
nano \
curl \
wget

- name: Setup Copilot environment
- name: Verify development environment
run: |
echo "Development environment ready for GitHub Copilot"
echo "Python version: $(python --version)"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on:
pull_request:
branches: [main]

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
permissions:
contents: read
packages: read

jobs:
test:
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.repository }}:latest
image: ghcr.io/epiforesite/epiworldpythonstreamlit:latest
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Loading